aboutsummaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
2013-09-06fix inline js in x86 target, enable testing sans validation for inline js in ↵Alon Zakai
asm.js, fix unistd tests that use inline js to not validate, and make js optimizer more tolerant of inline js in asm code; fixes #1597
2013-09-05Merge pull request #1581 from inolen/rwfileAlon Zakai
added read/writeFile helpers, updated tests to use new FS APIs
2013-09-04longjmp test across asm modulesAlon Zakai
2013-09-04dlopen+exceptions+asm is not supported yetAlon Zakai
2013-09-04do not fail in test_dlfcn_qsort of js engine cannot do asm validation; fixes ↵Alon Zakai
#1591
2013-09-04handle glBufferData usages that are not in WebGL; fixes #1589Alon Zakai
2013-09-04fix repeated calls to glDraw* where the count changes but not the client ↵Alon Zakai
attributes; fixes part of #1589
2013-09-04Merge branch 'vertex_array_object_bug' of ↵Alon Zakai
github.com:michaeljbishop/emscripten into incoming
2013-09-04Added test which shows broken GL emulation when:Michael J. Bishop
1. Binding to a VertexObjectBuffer and calling `glDrawArrays` on two different sections of it. 2. Using `glVertexPointer` with actual pointer to a vertex array and calling `glDrawArrays` on two different sections of it.
2013-09-03updated unistd and fs_base tests to use new FS APIsAnthony Pesch
2013-09-03add browser module testAlon Zakai
2013-09-03support -E in emccAlon Zakai
2013-09-03do not eliminate supposedly stub functions in side modules, as they may be ↵Alon Zakai
imported from the parent
2013-09-03wip test_dlfcn_mallocsAlon Zakai
2013-09-03add test_dlfcn_funcsAlon Zakai
2013-09-03do not require LINKABLE in DLOPEN_SUPPORTAlon Zakai
2013-09-03rename testAlon Zakai
2013-09-03clean up dlfcn testsAlon Zakai
2013-09-03fix test_dlfcn_unique_sig in non-asmAlon Zakai
2013-09-03fix non-asm dlfcn setup codeAlon Zakai
2013-09-03added test_dlfcn_stack_forwardAnthony Pesch
2013-09-03added dlopen test to test function pointers with signatures not found in the ↵Anthony Pesch
main module
2013-09-03fix asm validation of side modulesAlon Zakai
2013-09-03fix test_dlfcn_selfAlon Zakai
2013-09-03update test_dlfcn_varargsAlon Zakai
2013-09-03update test_dlfcn_varargsAlon Zakai
2013-09-03update test_dlfcn_aliasAlon Zakai
2013-09-03update test_dlfcn_data_and_fptrAlon Zakai
2013-09-03support function pointer calls across asm modules by passing them all ↵Alon Zakai
through invoke (for now), and have a global function table in the Runtime, which modules register their functions to
2013-09-03refactor test_dlfcn_qsortAlon Zakai
2013-09-03refactor dlfcn test codeAlon Zakai
2013-09-03track maximum function index when using dlopen supportAlon Zakai
2013-09-03disable memory init file in test_dlfcn_basicAlon Zakai
2013-09-03enable test_dlfcn_basic for asm modulesAlon Zakai
2013-08-31remove temporary enet fix, and define gethostbyname_r in a header, so that ↵Alon Zakai
we can be sure at compilation time that it is used in the way it is expected to be (that function has more than one possible signature in various unixes)
2013-08-31 - temp fix for test_enetAnthony Pesch
- added debugging info to websocket backend
2013-08-30don't close client sockets by default in echo server enabling TCP teardown ↵Anthony Pesch
to succeed
2013-08-30disable test_stdin in node (temporarily) and v8Alon Zakai
2013-08-30fix test_emscripten_get_nowAlon Zakai
2013-08-30fix use of NODE_JS in test_socketsAlon Zakai
2013-08-30Merge pull request #1557 from inolen/sockfsAlon Zakai
getaddrinfo, freeaddrinfo, getnameinfo support and sockfs
2013-08-30Remove compilation warnings on msvc10 tests. Add missing --preload-file ↵Jukka Jylänki
directives to SDL samples when building from msvc10. Removed the 'new' sample from msvc10 build since it is not designed to be built directly. Fixes https://groups.google.com/forum/#!topic/emscripten-discuss/HVavL5SPUrk
2013-08-30don't re-use ports between different harnessesAnthony Pesch
2013-08-29Merge pull request #1311 from juj/emscripten_get_nowAlon Zakai
emscripten_get_now enabled for SpiderMonkey, optimization and test.
2013-08-29run test_stdin in all JS_ENGINESAnthony Pesch
2013-08-29updated test_stdin to work in SM shellAnthony Pesch
2013-08-29 - added tests for tcgetattr / tcsetattrAnthony Pesch
- made test_stdin async to work in the node environment - clearerr should reset both eof and error indicators - fgetc was incorrectly setting the eof indicator. in cases where fread had errored with EAGAIN it was setting eof. I removed the set entirely, as there is no need for fgetc to even worry about it, fread will set the correct value in any case
2013-08-29Pass relative paths instead of absolute paths in Visual Studio include ↵Jukka Jylänki
directories for the glbook samples in msvc10 tests. Fixes #1568.
2013-08-29emscripten_get_now enabled for SpiderMonkey, optimization and test for shell ↵Jukka Jylänki
and browser.
2013-08-29 - created SOCKFSAnthony Pesch
- added support for node-based listen servers - updated tests to also test against compiled listen servers