aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
AgeCommit message (Collapse)Author
2012-12-09disable new longjmp tests in asmAlon Zakai
2012-12-09merge incomingAlon Zakai
2012-12-08fix testcase for longjmp4 to avoid undefined behavior, enable in all ↵Alon Zakai
optimization modes; closes #747
2012-12-08properly use identifier given to resume instruction, avoids issues with ↵Alon Zakai
cxa_catch cleaning it up; fixes test_multiexception, the exception-handling part of #747
2012-12-07disable test_longjmp4 in optimized builds - it fails in native clang -O2 as ↵Alon Zakai
well, possibly undefined behavior
2012-12-07rewrite setjmp code to identify, uniquely, each setjmp and match it to a ↵Alon Zakai
longjmp. add testcase for #747, works in unoptimized builds
2012-12-07add test_multiexception for #747Alon Zakai
2012-12-07clear setjmped when handling a longjmp, so we can proceed to longjmp later ↵Alon Zakai
correctly; fixes #747
2012-12-07disable test_linespecific in asmAlon Zakai
2012-12-07test fixes and set sign and overflow correction to 1 when in asm modeAlon Zakai
2012-12-07disable freetype in asm because it uses setjmpAlon Zakai
2012-12-07ignore longjmp tests in asmAlon Zakai
2012-12-07disable poppler in asmAlon Zakai
2012-12-07registerizeAsmAlon Zakai
2012-12-07properly disable test_runtimelink for asmAlon Zakai
2012-12-07disable bindings generator tests for asmAlon Zakai
2012-12-07disable some tests in asmAlon Zakai
2012-12-07disable safe-heap reliant tests in asmAlon Zakai
2012-12-07i64Math in asmAlon Zakai
2012-12-07fix EXPORTED_FUNCTIONS use in testsAlon Zakai
2012-12-07fix test_unsignedAlon Zakai
2012-12-07test correctionsAlon Zakai
2012-12-07disable test_pgo in asmAlon Zakai
2012-12-07disable test_linespecific in asmAlon Zakai
2012-12-07freelocale stubAlon Zakai
2012-12-07disable some more asm testsAlon Zakai
2012-12-07disable i64 tests for asm for nowAlon Zakai
2012-12-07disable some test_cases undefined behavior cases for asmAlon Zakai
2012-12-07disable test_gc in asmAlon Zakai
2012-12-07fix test_emscripten_apiAlon Zakai
2012-12-07disable dlopen tests in asmAlon Zakai
2012-12-07update tests to use power of 2 heapsAlon Zakai
2012-12-07add asm2 to ALLAlon Zakai
2012-12-07add asm2 test suiteAlon Zakai
2012-12-07add eliminator mode for asmAlon Zakai
2012-12-07add asm to ALLAlon Zakai
2012-12-07generate separate type-specific function tablesAlon Zakai
2012-12-07add asm test suiteAlon Zakai
2012-12-07properly implement uitofp/sitofp using our existing code for that; fixes #745Alon Zakai
2012-12-07add parts of system bitcode libraries when necessary, and refactor library ↵Alon Zakai
inclusion decision code
2012-12-04only add in .o inside .a that are neededAlon Zakai
2012-12-03do not apply -l if not generating an executable or a libraryAlon Zakai
2012-11-28Use 'return 0;' instead of 'return 1;' in all native code in tests/runner.py ↵Jukka Jylänki
to denote exit with a success.
2012-11-28Improve test runner build_native and run_native functions to output detailer ↵Jukka Jylänki
error report when things go wrong.
2012-11-27disable tests not working without named globalsAlon Zakai
2012-11-27switch to all or nothing named globals, and add testingAlon Zakai
2012-11-27fix NUM_NAMED_GLOBALS bug with global postsets and add test coverageAlon Zakai
2012-11-27avoid unnecessary disk IO in test_gcc_unmanglerAlon Zakai
2012-11-24allow limited the amount of named globalsAlon Zakai
2012-11-24fix snprintf on output size 0Alon Zakai