aboutsummaryrefslogtreecommitdiff
path: root/tests/test_core.py
AgeCommit message (Collapse)Author
2013-09-18generate valid code for segfaulting loads, not assignless abortsAlon Zakai
2013-09-18Add a test and myself to AUTHORS.ngld
2013-09-16Merge pull request #1618 from sbalko/incomingAlon Zakai
Incoming
2013-09-13Skip test_math unless using ta2Bruce Mitchener
isfinite and friends require ta2 with musl headers.
2013-09-13Enable %[] pattern in scanfSoeren Balko
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-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-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-10Skip test_utf32 when on s_0_x since they don't link in libc, and the code ↵Jukka Jylänki
relies on wcslen().
2013-09-10Add functions for marshalling wchar_t (which is fixed 32-bit UTF32LE on ↵Jukka Jylänki
Unix) strings to and from JS, and add a test.
2013-09-06handle inline assembly more carefully, avoid it being seen by asm ↵Alon Zakai
optimizations entirely, and mark it as unsupported in non-le32
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-03updated unistd and fs_base tests to use new FS APIsAnthony Pesch
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-30fix test_emscripten_get_nowAlon Zakai
2013-08-30Merge pull request #1557 from inolen/sockfsAlon Zakai
getaddrinfo, freeaddrinfo, getnameinfo support and sockfs
2013-08-29Merge pull request #1311 from juj/emscripten_get_nowAlon Zakai
emscripten_get_now enabled for SpiderMonkey, optimization and test.
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