summaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
2013-10-11C++ demangle helperAlon Zakai
2013-10-10do not emit postSets for function indexing etc., bake them into the memory ↵Alon Zakai
initializer
2013-10-10do not assert on output of numeric 0 from a js handlerAlon Zakai
2013-10-09remove no longer needed test disablingAlon Zakai
2013-10-09use aliasing function pointers in -O1Alon Zakai
2013-10-09update other.test_chunkingAlon Zakai
2013-10-09avoid X-(-Y) in js optimizer; fixes #1685Alon Zakai
2013-10-09run relooper in -O1, and do not run js opts thereAlon Zakai
2013-10-08Merge pull request #1689 from juj/fix_gl_uniform_arraysjuj
Fix gl uniform arrays
2013-10-08Disable the uniform array test by default.Jukka Jylänki
2013-10-08Add unit test for GLES2 uniform arrays.Jukka Jylänki
2013-10-06enable asm validation checks in unistd tests using EM_ASMAlon Zakai
2013-10-06make EM_ASM use strings on the heap, so it works in asm, and cache the ↵Alon Zakai
generated functions
2013-10-07Fix the rotozoom testsFelix H. Dahlke
2013-10-05change test_module_exports_with_closure to only execute the run_js test when ↵Fraser Adams
engine == NODE_JS, this test is really checking that the module.exports stuff works in node
2013-10-05replaced tests/Module-exports in path_from_root with 'tests', ↵Fraser Adams
'Module-exports' to be more friendly multiple OSs
2013-10-04Added test_module_exports_with_closure to tests/test_other.py, run with ↵Fraser Adams
./runner.py other.test_module_exports_with_closure
2013-10-03disable heap align check in test_files, it mixes poorly with closureAlon Zakai
2013-10-03update test_emccAlon Zakai
2013-10-03emit final missing returns in compiler itselfAlon Zakai
2013-10-02remove obsolete fp80 testAlon Zakai
2013-10-02move heap align checks to asm2g, keep -O1 pristineAlon Zakai
2013-10-02fixed problem where module.exports, which is needed by node.js gets ↵Fraser Adams
incorrectly minified by Closure. Simple change from module.exports = Module to module['exports'] = Module fixes this. Added simple test case compiling with --O2 -closure 1 to /tests/Module-exports
2013-10-01disable some recently-changed tests in modes where they need inline js or emccAlon Zakai
2013-10-01test runner commentAlon Zakai
2013-09-30update unistd tests to run only on nodeAlon Zakai
2013-09-30run test_fs_nodefs_rw only in nodeAlon Zakai
2013-09-30update test_outlineAlon Zakai
2013-09-30fix sanity.test_emcc_caching (we now have a cache dir earlier on)Alon Zakai
2013-09-30add tests for GLUT mouse wheel eventsAntoine Lambert
2013-09-29 - append to Building.COMPILER_TEST_OPTS for unistd testsAnthony Pesch
2013-09-29 - added basic nodefs r/w testAnthony Pesch
2013-09-29 - added test for FS.syncfs functionalityAnthony Pesch
2013-09-27- updated several unistd tests to test against NODEFSAnthony Pesch
2013-09-26add slack to test_sdl_canvas_alphaAlon Zakai
2013-09-25Fix #1668: whiteSpace in _scanString should use only char codes as keys not ↵ngld
chars and char codes.
2013-09-25Add test case for zero multiplication.Bruce Mitchener
2013-09-24sdl alpha testAlon Zakai
2013-09-24Make the tones shorter in duration to have the test harness not timeout (60 ↵Jukka Jylänki
seconds timeout duration) before all the beeps are finished.
2013-09-24Update the sdl audio beep test to new test_browser.py suite after rebase.Jukka Jylänki
2013-09-24Allow compiling the sdl_audio_beep.cpp sample outside the browser test harness.Jukka Jylänki
2013-09-24Make the time periods between beeps longer to be able to distinguish audio ↵Jukka Jylänki
quality better.
2013-09-24Improve SDL_OpenAudio support to work with the newest Web Audio API spec, ↵Jukka Jylänki
add better support for different SDL audio formats and sample rates. Add browser test for SDL audio beep sample.
2013-09-24Fixed some stuff I forgot to change.ILOVEPIE
Signed-off-by: ILOVEPIE <thehairyrock@gmail.com>
2013-09-24Merge pull request #1650 from rharkeadsk/dev/fix-printf-paddingAlon Zakai
Fix 3 issues with formatting (printf)
2013-09-24do not turn 0*x to 0 in the case of floats, since NaNs break there; fixes #1661Alon Zakai
2013-09-23do not leak emcc args changes in test_casesAlon Zakai
2013-09-23simplify chunk size determination in emscripten.pyAlon Zakai
2013-09-23asm coerce in atomicrmw; fixes #1637Alon Zakai
2013-09-19Implement missing 'space' formatting flagRanger Harke
This flag causes space (padding) to be reserved for the sign even if the number is positive. It is basically the same as the 'plus' flag except that a space is displayed instead of a plus sign. The 'plus' flag takes precedence.