aboutsummaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
2012-12-19Updated scripts to call python2 directly rather than relying on python ↵Alan Kligman
symlink pointing to the right place. See PEP394 for details on why this should be OK.
2012-12-19remove --remove-duplicatesAlon Zakai
2012-12-19tolerate people issuing link commands with duplicates in themAlon 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-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-30Fixed embind for non-void non-const class methods (with test).Dominic Wong
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-27update test_cases/gepoverflowAlon Zakai
2012-11-27fix test_cases_subnumsAlon 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
2012-11-23Merge pull request #717 from juj/test_compile_failAlon Zakai
Ensure that a failing compilation results in a nonzero return code.
2012-11-23fix test_failure_error_codeAlon Zakai
2012-11-23Merge pull request #714 from juj/test_failAlon Zakai
test_failure_error_code
2012-11-23fix fminAlon Zakai
2012-11-23fix sscanf n bug, fixes #727Alon Zakai
2012-11-23fix glBufferSubDataAlon Zakai
2012-11-22fix setjmp/longjmp to notice if we actually setjmped in the invocation of ↵Alon Zakai
the function on the stack, so recursive functions can use setjmp/longjmp
2012-11-22fix o2.test_openjpegAlon Zakai
2012-11-22fix test_js_optimizerAlon Zakai
2012-11-22test for mixed jcache resultsAlon Zakai
2012-11-22fix ll func identifying for chunking purposes, and add testing of jcache on ↵Alon Zakai
a large program
2012-11-22more carefully split out functions in js optimizerAlon Zakai
2012-11-21more jcache testing, and add newlines to ensure chunk separationAlon Zakai
2012-11-21finish js optimizer caching and add testsAlon Zakai
2012-11-21test for inlineasm with outputsAlon Zakai
2012-11-21fix emscript funcs caching and add testingAlon Zakai
2012-11-21cache emscript function chunksAlon Zakai
2012-11-21add chunking test for using multiple coresAlon Zakai
2012-11-21improve chunkify to consider previous chunkings when cachingAlon Zakai
2012-11-21more jcache testingAlon Zakai
2012-11-21fix and test pre cachingAlon Zakai
2012-11-21emscripten_run_script_stringAlon Zakai
2012-11-20Merge pull request #724 from xxuejie/add_erfAlon Zakai
Add erf and erfc implementations
2012-11-20warn on very large structural types that slow us downAlon Zakai
2012-11-20fix sscanf bug and clean up code; fixes #723Alon Zakai
2012-11-19Add erf and erfc implementationsXuejie Xiao