aboutsummaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
2013-11-11Merge pull request #1774 from fadams/fix-getaddrinfo-null-hintsAlon Zakai
Provided an implementation for gai_strerror and gave getaddrinfo sensibl...
2013-11-11fix joystick browser integrationAlon Zakai
2013-11-11Merge branch 'sdl_joystick' of github.com:jvilk/emscripten into incomingAlon Zakai
2013-11-11remove unnecessary ltoing in benchmark suiteAlon Zakai
2013-11-11Merge branch 'incoming' into f32Alon Zakai
2013-11-11remove asm1f from ALLAlon Zakai
2013-11-11test suite changes for f32 landing: enable float32_precise in all modes, ↵Alon Zakai
disable asm1f (rely on testing in float32_precise and fasta), and mark asm2f as permanent
2013-11-11add option for precise f32 in benchmarksAlon Zakai
2013-11-11benchmark linpack in both float and double modesAlon Zakai
2013-11-10more precise float testingAlon Zakai
2013-11-10Fix Makefile in test_lua in the case when make is in a path that contains ↵Jukka Jylänki
spaces (e.g. c:\program files\emscripten\...\mingw32-make).
2013-11-10[SDL] Joystick API implementation using HTML5 Gamepad APIJohn Vilk
Works in browsers that implement the working draft of the standard (current Chrome / Firefox stable): http://www.w3.org/TR/2012/WD-gamepad-20120529/#gamepad-interface ...and browsers that implement the editor's draft (current Firefox Nightly): https://dvcs.w3.org/hg/gamepad/raw-file/default/gamepad.html#idl-def-Gamepad Contains unit tests for both event types.
2013-11-09add asm2f to ALLAlon Zakai
2013-11-09support inline asm comments; fixes #1766Alon Zakai
2013-11-09make asm2f do full optimization, including minificationAlon Zakai
2013-11-09test both float and double in fastaAlon Zakai
2013-11-09Provided an implementation for gai_strerror and gave getaddrinfo sensible ↵Fraser Adams
default behaviour when hints is set to NULL. Ideally getaddrinfo should supply multiple addrinfo values when hints is NULL or ai_family is set to AF_UNSPEC but this is a somewhat more complex proposition
2013-11-09Fix test_lua on Windows when built using mingw32-make. That tool got ↵Jukka Jylänki
confused by a '#' comment at the end of a command line, so move the comment to its own separate line.
2013-11-08emit proper large float constants when js opts are to be runAlon Zakai
2013-11-08add asm2f test subsuiteAlon Zakai
2013-11-08Merge branch 'incoming' into f32Alon Zakai
Conflicts: src/parseTools.js src/preamble.js
2013-11-06Merge pull request #1748 from caiiiycuk/fix_sdl_colorsAlon Zakai
Fix SDL_SetColors && SDL_envets
2013-11-06Merge pull request #1743 from fadams/fix-nodejs-socket-clientAlon Zakai
add support for node.js to act as a socket client
2013-11-05use __proto__ when available for new streams, otherwise do a full copy; ↵Alon Zakai
fixes #1759, #1760
2013-11-05support ASM_JS=2 not just in test runner, and remove some unneeded uses in ↵Alon Zakai
test suite
2013-11-04add testcase for select fixAlon Zakai
2013-11-04Removed RunnerCore import as no longer needed and added return ↵Fraser Adams
self.skip('node is not present') to test_nodejs_sockets_echo if node isn't available
2013-11-02moved nodejs client test case into main sockets test class as requested. Run ↵Fraser Adams
with ./runner.py sockets.test_nodejs_sockets_echo
2013-11-01do not emit unnecessary coercions when calling a math builtin with a floatAlon Zakai
2013-11-01Merge branch 'incoming' into f32Alon Zakai
Conflicts: src/parseTools.js
2013-11-01Merge pull request #1752 from michaeljbishop/glgetintegerv-fixAlon Zakai
Adds to a test case verifying return values from glGetIntegerv
2013-11-01Merge pull request #1750 from juj/no_copy_vfs_to_heapjuj
no_copy_vfs_to_heap
2013-11-02Add command line parameter --no-heap-copy that optimizes for small memory ↵Jukka Jylänki
footprint and fread() performance over the default behavior that copied VFS to HEAP, that is designed for mmap() performance. Adjust MEMFS node contentMode enum to reflect whether content is off the main HEAP or not. Note that this enum is not much used, so this has little effect. Add browser tests to check that fread() and mmap() work with and without --no-heap-copy.
2013-11-01add vector support for and, or and xorAlon Zakai
2013-11-01Adds to a test case verifying glGetIntegerv returnsMichael J. Bishop
correct results when the current texture id is not TEXTURE0 and fixes library_gl.js so that it returns correct results.
2013-10-31Merge branch 'fixup-node-version-check' of github.com:bnoordhuis/emscripten ↵Alon Zakai
into incoming Conflicts: AUTHORS
2013-10-30handle vector zeroinitializersAlon Zakai
2013-10-30remove finalizeParam and properly use finalizeLLVMParameter everywhereAlon Zakai
2013-10-30fix tests/cases/caall.llAlon Zakai
2013-10-30tools: parse pre-release node.js version numbersBen Noordhuis
`node` binaries built from upstream git have a "-pre" suffix attached to the version number. Fix the version parser to handle those.
2013-10-30begin to add emscripten_float32x4_signmaskAlon Zakai
2013-10-30improve simd testsAlon Zakai
2013-10-30fix missing semicolons on simd load and storeAlon Zakai
2013-10-30Fix SDL_SetColors && SDL_envetsAleksander Guryanov
2013-10-29add asm1f test modeAlon Zakai
2013-10-29add test for precise float32 support, allow 3 modes of precise float32 ↵Alon Zakai
support, and rename option to PRECISE_F32 to be consistent with other precision options
2013-10-29improve fasta float32 testingAlon Zakai
2013-10-29clean up simd code, fix uint32x4 heap offsets, and add testingAlon Zakai
2013-10-29use double for emscripten_get_now, to not lose precision from ↵Alon Zakai
performance.now etc.
2013-10-29optimize scanString to not run the regex more than onceAlon Zakai