Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-11-19 | Add erf and erfc implementations | Xuejie Xiao | |
2012-11-16 | print out hexadecimal 64-bit values properly, and fix some bugs with ↵ | Alon Zakai | |
I64_PRECISE mode 2; fixes #716 | |||
2012-11-16 | add PRECISE_I64_MATH mode 2, to force inclusion of i64 code even when we ↵ | Alon Zakai | |
can't tell at compile time it is needed. helps with #716 | |||
2012-11-15 | emit libraries and globals in pre phase, which needs to parse globals ↵ | Alon Zakai | |
anyhow, and avoid overhead of libraries in func phases | |||
2012-11-14 | Refactor Windows replacement for Popen to allow passing stdin to Popen ↵ | Jukka Jylänki | |
process, and poll() and kill(). Fixes tests other.test_fix_closure and other.test_warn_undefined on Windows. | |||
2012-11-13 | Merge pull request #710 from juj/cmake | Alon Zakai | |
Try to locate emcc in cmake based on the cmake toolchain directory struc... | |||
2012-11-13 | replace unicode with bit pattern in test_strcmp_uni, should fix #708 | Alon Zakai | |
2012-11-13 | assert our tests do not leave .ll's behind | Alon Zakai | |
2012-11-14 | Try to locate emcc in cmake based on the cmake toolchain directory structure ↵ | Jukka Jylänki | |
to avoid having to set EMSCRIPTEN environment variable on unix. Remove the temporary workaround for other.test_cmake, which shouldn't now be needed. | |||
2012-11-13 | temporary fix for test_cmake | Alon Zakai | |
2012-11-13 | fix temp dir leaks in sanity checks. #706 | Alon Zakai | |
2012-11-13 | Merge pull request #703 from juj/cmake | Alon Zakai | |
Cmake support. | |||
2012-11-13 | disable headless test without spidermonkey | Alon Zakai | |
2012-11-13 | glVertex2fv, +tests | Alon Zakai | |
2012-11-13 | headless option | Alon Zakai | |
2012-11-12 | handle byval varargs; fixes #705 | Alon Zakai | |
2012-11-12 | zoomSurface support; fixes #673 | Alon Zakai | |
2012-11-12 | handle as best we can surprising types for legalized bitcasts. fixes #701 | Alon Zakai | |
2012-11-12 | Update test_cmake to invoke proper cmake toolchain file, and produce error ↵ | Jukka Jylänki | |
output to console. | |||
2012-11-12 | Added cmake toolchain file for Emscripten and a other.test_cmake to tests ↵ | Jukka Jylänki | |
its functionality. | |||
2012-11-11 | hide some ugly output in test_local_link | Alon Zakai | |
2012-11-11 | allow skipping tests in test runner with skip:SUITE.TEST | Alon Zakai | |
2012-11-11 | use internal relooper sources | Alon Zakai | |
2012-11-10 | clear cache and run sanity checks on version bumps, this will help with ↵1.0.1 | Alon Zakai | |
relooper updates etc. | |||
2012-11-10 | bootstrap relooperautomatically | Alon Zakai | |
2012-11-09 | Merge branch 'relooper2' into incoming | Alon Zakai | |
2012-11-09 | test fixes | Alon Zakai | |
2012-11-09 | Merge pull request #686 from juj/win_test_fixes | Alon Zakai | |
Win test fixes | |||
2012-11-09 | adjust clear() to work with other.test_emcc even in EMCC_DEBUG=1 ↵ | Alon Zakai | |
EM_SAVE_DIR=1 mode; fixes #684 | |||
2012-11-09 | Fixed a result parsing issue in test_pgo on Windows. | Jukka Jylänki | |
The previous code assert assumed to find a string 'Overflow|.*src.cpp:6 : 60 hits, %20 failures', but building on Windows gave a string of form 'Overflow|tmpCemscripten_tempCsrc.cpp:6 : 60 hits, %20 failures', i.e. prepending the path to the source file in the result. Now using a regex to accept both forms. | |||
2012-11-09 | Fix \r\n vs \n parsing issue in test runner comparisons. | Jukka Jylänki | |
2012-11-09 | Convert crlf to lf in other.test_js_optimizer test to pass the test on Windows. | Jukka Jylänki | |
2012-11-09 | Adjust an assert check in other.test_emcc to be more relaxed on the ↵ | Jukka Jylänki | |
generated LLVM output. On Windows, the text outputted by LLVM varied somewhat, so testing for string containment instead works better. | |||
2012-11-08 | Fix a few other cases like previous commit where a possibly failing test ↵ | Jukka Jylänki | |
could leak temporarily set environment variables. | |||
2012-11-08 | Fix test_conftest_s_flag_passing (__main__.other) from leaking behind an ↵ | Jukka Jylänki | |
environment variable EMMAKEN_JUST_CONFIGURE=1 if the test fails. This would cause all subsequent tests in the test runner to also fail. | |||
2012-11-08 | support inet_ntoa and inet_aton, and fix inet_ntop bug with not writing null ↵ | Alon Zakai | |
terminator | |||
2012-11-08 | fix test_emcc | Alon Zakai | |
2012-11-07 | test debug info removal in -O1+ | Alon Zakai | |
2012-11-07 | improve memory growth error | Alon Zakai | |
2012-11-07 | Merge pull request #677 from juj/test_emconfig | Alon Zakai | |
Trim line endings in test_emconfig since they vary per-platform. | |||
2012-11-07 | fix sanity test | Alon Zakai | |
2012-11-07 | use COMPILER_TEST_OPTS in emcc tests | Alon Zakai | |
2012-11-07 | coverage for EMCC_DEBUG=1 and 2 | Alon Zakai | |
2012-11-07 | strip debug info in -O1 and above by default, unless -g is specified when ↵ | Alon Zakai | |
converting to JS, since (1) js optimizations strip it anyhow, and (2) it slows down compilation | |||
2012-11-07 | test coverage for splitting each function out into an emscript chunk | Alon Zakai | |
2012-11-06 | fix test_linespecific and test_pgo | Alon Zakai | |
2012-11-06 | fix test_debug | Alon Zakai | |
2012-11-06 | build freetype separately for opt, without debug metadata, to add more ↵ | Alon Zakai | |
testing for chunking in emscript | |||
2012-11-06 | remove -g in -O2, for more test coverage | Alon Zakai | |
2012-11-06 | split js compiler into three passes, to facilitate future parallization | Alon Zakai | |