ldmud/test
Alexander Motzkau 1d896f5af6 Fix crash on __INT_MIN__ % -1
(At least) on Intel processors modulo division is done together with normal
division resulting in an exception when the division results exceeds the
value range. Therefore fix the special case of __INT_MIN__ % -1, where
division would not be allowed, but modulo is well defined.
2025-07-07 20:52:57 +02:00
..
generic - (test/run.sh, test/t-0000604.sh) 2009-01-31 18:00:49 +00:00
inc Fixed a crash on exceptions with python efun closures. 2018-01-30 23:27:00 +01:00
t-0000233 Fix movement of variable blocks during virtual inheritance 2022-01-08 23:08:00 +01:00
t-0000257 Added type objects. (#721) 2014-02-10 18:43:50 +01:00
t-0000398 Updated test cases to use the new efuns 2016-01-25 23:41:24 +01:00
t-0000548 - (object.c) 2009-01-14 14:19:01 +00:00
t-0000669 Removed the seteuid() and export_uid() efuns 2017-09-27 00:45:43 +02:00
t-0000713 Updated test cases to use the new efuns 2016-01-25 23:41:24 +01:00
t-0000772 Added checks for destroyed objects in clone_object(), process_string() 2011-02-22 19:19:29 +00:00
t-0000837 Added test case for #837. 2015-01-10 20:31:30 +01:00
t-0000838 Accept struct index operations on structs of the same name. 2015-02-12 12:57:53 +01:00
t-0000841 Fix crash upon context closures in the global scope. 2015-06-18 22:13:31 +02:00
t-0000854 Handle lvalue references when swapping 2018-01-30 22:08:16 +01:00
t-0000888 variable_list(): swap-in variables 2021-04-04 02:43:57 +02:00
t-030925 - (test/*) Added a testsuite and included existing test cases therein. 2008-07-03 14:07:17 +00:00
t-040413 - (test/*) Added a testsuite and included existing test cases therein. 2008-07-03 14:07:17 +00:00
t-041124 - (test/*) Added a testsuite and included existing test cases therein. 2008-07-03 14:07:17 +00:00
t-gc Fix creating a loop in a union list during GC. 2015-02-06 23:41:20 +01:00
t-language Fix crash during compilation of wildcard calls 2022-05-19 21:52:25 +02:00
t-python Fixed a bug in type deduction of python efun calls. 2018-01-30 23:27:00 +01:00
run.sh Corrected test suite to respect the absence of pkg-python. 2017-09-30 19:27:10 +02:00
sys - (test/*) Added a testsuite and included existing test cases therein. 2008-07-03 14:07:17 +00:00
t-0000375.c Updated test cases to use the new efuns 2016-01-25 23:41:24 +01:00
t-0000486.c Updated test cases to use the new efuns 2016-01-25 23:41:24 +01:00
t-0000488.c Updated test cases to use the new efuns 2016-01-25 23:41:24 +01:00
t-0000522.c Updated test cases to use the new efuns 2016-01-25 23:41:24 +01:00
t-0000523.c - (interpret.c, string_spec) Removed the 'closures was bound to 2008-07-17 07:52:21 +00:00
t-0000524.c - (test/t-0000524.c) Added a test for Bug #524 2008-07-04 14:58:06 +00:00
t-0000532.c - (test/t-0000532.c) Added a simple test for Bug #532 2008-07-03 22:14:32 +00:00
t-0000534.c Updated test cases to use the new efuns 2016-01-25 23:41:24 +01:00
t-0000535.c Updated test cases to use the new efuns 2016-01-25 23:41:24 +01:00
t-0000604.sh - (test/run.sh, test/t-0000604.sh) 2009-01-31 18:00:49 +00:00
t-0000622.c - (interpret.c) Wrongly calculated the jump offset of the default 2009-04-09 11:54:43 +00:00
t-0000683.c Updated test cases to use the new efuns 2016-01-25 23:41:24 +01:00
t-0000709.c - When removing unnecessary F_SAVE_ARG_FRAMEs the compiler didn't 2009-12-22 15:13:50 +00:00
t-0000714.c - RTTC in restore_object() didn't handle non-existant variables 2010-01-19 22:05:24 +00:00
t-0000715.c Updated test cases to use the new efuns 2016-01-25 23:41:24 +01:00
t-0000722.c - optpat() shouldn't read over the end of the given ed command. (#722) 2010-02-10 20:17:59 +00:00
t-0000741.c check_function_args(): fixed control stack handling. 2010-03-27 10:14:29 +00:00
t-0000811.c Implement __FUNCTION__ predefine. (#811) 2012-12-12 19:48:54 +01:00
t-0000816.c Fixed crash during compact_mapping(). 2013-02-24 00:22:55 +01:00
t-0000879.c Fix missing current object when calling H_CLEAN_UP 2020-07-29 23:02:45 +02:00
t-comm-destructed-ob1.c Prevent input handling for destructed players 2018-10-03 00:26:07 +02:00
t-comm-destructed-ob2.c Prevent input handling for destructed players 2018-10-03 00:26:07 +02:00
t-ed-leaks.c Fixed memory leaks in ed(). 2013-04-01 14:57:56 +02:00
t-efuns.c Fix crash when calling uninitialized MySQL library 2022-09-04 22:58:43 +02:00
t-errors.c Prevent reentrant SQLite calls 2021-05-13 16:39:50 +02:00
t-lambda.c Prevent multiple 'reserve modifiers with #'catch 2023-10-01 19:28:55 +02:00
t-LP64-issues.c Updated test cases to use the new efuns 2016-01-25 23:41:24 +01:00
t-lvalues.c Corrected lambda code generation for mapping index operations 2018-10-23 18:27:20 +02:00
t-mantis.c Deactivate stack mismatch check on a return from a lambda closure 2018-10-25 14:39:07 +02:00
t-operators.c Fix crash on __INT_MIN__ % -1 2025-07-07 20:52:57 +02:00