aboutsummaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
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 .
2013-09-16Merge pull request #1618 from sbalko/incomingAlon Zakai
Incoming
2013-09-13emscripten_async_load_scriptAlon Zakai
2013-09-13second enet fix to handle musl headers in emscriptenAlon Zakai
2013-09-13Merge pull request #1619 from waywardmonkeys/python-build-instructionsAlon Zakai
Python build instructions
2013-09-13simplify other.test_llvm_nativizer to not rely on libc stuffAlon Zakai
2013-09-13update sanity.test_jcacheAlon Zakai
2013-09-13Skip test_math unless using ta2Bruce Mitchener
isfinite and friends require ta2 with musl headers.
2013-09-13Change various 64 bit typedefs over to 32 bit.Bruce Mitchener
This also removes all of the changes that were needed for those typedefs to be 64 bit.
2013-09-13gethostbyname_r update.Bruce Mitchener
* gethostbyname_r is now the 6 arg version. * Make enet use the right code path (this should be upstreamed). * Add a compat header to make these declarations visible to all without extra compilation flags.
2013-09-13Update to work with new libc headers.Bruce Mitchener
2013-09-13Expand on the instructions for building Python.Bruce Mitchener
2013-09-13Enable %[] pattern in scanfSoeren Balko
2013-09-12do not switchify illegally-typed switchesAlon Zakai
2013-09-11we only allow 1 exported variable from inline js; #1613Alon Zakai
2013-09-11Merge pull request #1613 from juj/inline_asm_testcaseAlon Zakai
inline_asm_testcase
2013-09-11test FORCE_ALIGNED_MEMORY in bullet only in configure mode, not cmakeAlon Zakai
2013-09-11build both configure and cmake versions of bullet, so the cache does not mix ↵Alon Zakai
them up; #1610
2013-09-11Merge pull request #1610 from juj/fix_bulletAlon Zakai
Fix bullet
2013-09-11Merge pull request #1608 from juj/validate_asmjsAlon Zakai
Validate asmjs
2013-09-11Skip asm2x86.test_utf32 since test_utf32 uses inline asm.Jukka Jylänki
2013-09-11Add new unit test for inline asm syntax passing through input variables to ↵Jukka Jylänki
output variables.
2013-09-11Fix test_the_bullet on Windows. Closes #696. Related to #681. On Windows, ↵Jukka Jylänki
use cmake to configure bullet build instead of ./configure. On Linux and OSX, run both configure and cmake-based tests.
2013-09-11Use em_validate_asmjs_after_build() in CMake test.Jukka Jylänki
2013-09-10handle flexible arrays at the end of structs, whose elements are themselves ↵Alon Zakai
structs; fixes #1602
2013-09-10Add support for marshalling UTF-16 strings to/from JS. Allows passing ↵Jukka Jylänki
wchar_t strings to JS when building with -fshort-wchar. Closes #1565.
2013-09-10Update utf32 test to contain non-BMP characters in the test string.Jukka Jylänki
2013-09-10Rename utf32<->jsstring marshalling functions to UTF32ToString and ↵Jukka Jylänki
stringToUTF32 following azakai's suggestion on naming convention.