aboutsummaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
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-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-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-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.
2013-09-19Fix bug with forced display of sign on negative integersRanger Harke
The negative sign was displayed twice.
2013-09-19Fix bug with zero-padded negative integersRanger Harke
The zero padding was before the sign. It should be after.
2013-09-18generate valid code for segfaulting loads, not assignless abortsAlon Zakai
2013-09-18Add a test and myself to AUTHORS.ngld
2013-09-18handle memory initializer when there are deps added during preRunAlon Zakai
2013-09-18Merge pull request #1611 from juj/cmake_link_jsAlon Zakai
Cmake link js
2013-09-18Removed old test case and put a test case in a more appropriate area.Michael J. Bishop
tests/unistd/io.* --- Revert "Added to the test_files test to ensure the pread() functionality." This reverts commit 2ed2fb5df392251a0957543b920272b9b2ae7908.
2013-09-18Added to the test_files test to ensure the pread() functionality.Michael J. Bishop
2013-09-18Add functions em_link_js_library(), em_link_pre_js() and em_link_post_js() ↵Jukka Jylänki
to support linking .js files to executables, while doing dependency tracking on filestamp modifications. For more info, see https://groups.google.com/forum/#!topic/emscripten-discuss/uRbTIB62V7s .