aboutsummaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
2014-01-15add musl fputws, fix vswprintf, add testing for fwprintf and swprintf as well1.8.14Alon Zakai
2014-01-14fix aggressiveVariableElimination bug and add testingAlon Zakai
2014-01-14disable test_simd3 due to breakageAlon Zakai
2014-01-14fix double start bug #1992 in browser as wellAlon Zakai
2014-01-14Add GLEW 1.10.0 emulationJari Vetoniemi
Includes library_glew.js that stubs the init functions, but also provides the other functions. GL/glew.h is now changed to work with GLEW_EXT_foo_bar constants, some missing constants that are in GLEW 1.10.0 are also provided. Otherwise it still uses SDL_opengl.h to provide function definitions and other constants. Linaro's GLEW (glew-oes) is also supported to some degree to make it easier to get ES1 and ES2 software using it running. What it lacks: - Some constants and function declarations that are in GLEW 1.10.0 might be missing. - The real glew-es fork also includes normal GL constants and function pointers, this does not. Tests ran: - tests/runner.py browser Real world example using this code (and upcomming glfw3 port) can be found here: http://cloudef.eu/glhck http://cloudef.eu/glhck/qb.html
2014-01-13add fputwc, which enables wprintf1.8.9Alon Zakai
2014-01-13Merge branch 'incoming' of github.com:kripken/emscripten into incoming1.8.8Alon Zakai
conflicts: tests/test_core.py tools/shared.py
2014-01-13Merge pull request #2004 from waywardmonkeys/updatesAlon Zakai
Updates
2014-01-13handle precision -1 in printf .*Alon Zakai
2014-01-14Move scalbn to libc to fix broken functionality. Disable test on x86.Bruce Mitchener
2014-01-14Another test for negative zero and hex floats.Bruce Mitchener
2014-01-14Make lgamma and friends work, add test.Bruce Mitchener
We can't use weak aliases on variables in emscripten, so get rid of __signgam and just use signgam.
2014-01-14Add strtod(), wcstod(), wcstol() and friends.Bruce Mitchener
This implementation of strtod() replaces the old as it implements support for parsing hex constants which is needed by various tests.
2014-01-13clean up some more tests/casesAlon Zakai
2014-01-13fix testcase to validate as llvm irAlon Zakai
2014-01-13remove old test that cannot be done in fastcomp, relies on code ↵Alon Zakai
miscompilation in original compiler
2014-01-13Handle negative zero values correctly.Bruce Mitchener
This handles the situation when they're part of a global variable whether it just be a float/double or embedded within a struct. Fixes #1898.
2014-01-12enable another test_cases case in fastcompAlon Zakai
2014-01-12enable test_async_exit in fastcompAlon Zakai
2014-01-12enable test_typed_exceptions in fastcompAlon Zakai
2014-01-11more i64 switch testsAlon Zakai
2014-01-10enable more exceptions tests in fastcompAlon Zakai
2014-01-10enable first exceptions test for fastcompAlon Zakai
2014-01-09prevent calling run more than once; fixes #1992Alon Zakai
2014-01-08fix and enable other.test_simd on fastcompAlon Zakai
2014-01-08enable simd tests in fastcompAlon Zakai
2014-01-07fix test_luaAlon Zakai
2014-01-07update other.test_simd test for llvm 3.3 and 3.4Alon Zakai
2014-01-07Merge branch 'incoming' into llvm-3.41.8.6Alon Zakai
Conflicts: tests/test_benchmark.py tools/shared.py
2014-01-07handle variables that assign a value including themselves in ↵Alon Zakai
aggressiveVariableElimination
2014-01-07make aggressiveVariableElimination usable through a settingAlon Zakai
2014-01-07properly overflow gep arguments; fixes #1975Alon Zakai
2014-01-07Merge branch 'add-libuuid' of github.com:fadams/emscripten into incomingAlon Zakai
Conflicts: tools/shared.py
2014-01-07make benchmark suite more robust to settings changesAlon Zakai
2014-01-07clean up test runner outputAlon Zakai
2014-01-06benchmark updatesAlon Zakai
2014-01-06benchmark updatesAlon Zakai
2014-01-06refactor lua benchmarkAlon Zakai
2014-01-06option to benchmark multiple llvm versions, both native and jsAlon Zakai
2014-01-06refactor lua benchmarkAlon Zakai
2014-01-06option to benchmark multiple llvm versions, both native and jsAlon Zakai
2014-01-06fix poppler configure for clang 3.4Alon Zakai
2014-01-06other.test_emcc fixes for fastcompAlon Zakai
2014-01-06changed != to !== in a couple of places. Added fix to prevent closure ↵Fraser Adams
minifying crypto randomBytes etc. this fix makes use of closure externs so I've added a closure-externs.js to hold the definitions and modified tools/shared.py closure_compiler method to point to closure-externs.js. I've added externs to fix minification of the ws library used in library_sockfs.js too
2014-01-04fix function type in test_openal_buffers for asmAlon Zakai
2014-01-04specify (void) as the arguments in webgl_context_attributes test, to avoid ↵Alon Zakai
confusion with varargs by clang
2014-01-03disable/update various browser tests for fastcompAlon Zakai
2014-01-03fix benchmark suite bug where args got appendedAlon Zakai
2014-01-03disable named globals test in fastcompAlon Zakai
2014-01-03convert test_sdl_canvas to btestAlon Zakai