aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-11-15fix asm2g.test_the_bulletAlon Zakai
2013-11-15option to hoist dead ends into loopsAlon Zakai
2013-11-15Merge pull request #1814 from juj/fix_test_static_linkAlon Zakai
Fix test static link
2013-11-15Fix other.test_static_link on Windows by using CMake instead of configure to ↵Jukka Jylänki
build zlib and bullet.
2013-11-15Move bullet library build code to runner.py so that it can be shared between ↵Jukka Jylänki
test_the_bullet in test_core.py and test_static_link test_other.py.
2013-11-15Make emlink.py import-safe. Fixes an issue where python multiprocessing.py ↵Jukka Jylänki
enters an infinite loop throwing errors 'Attempt to start a new process before the current process has finished its bootstrapping phase.' when running other.test_static_link. See http://stackoverflow.com/questions/18204782/runtimeerror-on-windows-trying-python-multiprocessing .
2013-11-15Fix other.test_preprocess on Linux after regressing it in the previous ↵Jukka Jylänki
commit b3906e91dec32ee13258cee820781c8bf9bb9c1c that fixed it for Windows.
2013-11-14emit ll from llvm opt directly, to skip writing and reading all the bitcodeAlon Zakai
2013-11-14don't evaluate function table aliases containing relocation offsets; fixes #1807Alon Zakai
2013-11-14Merge branch 'regex-impl' of github.com:waywardmonkeys/emscripten into incoming1.7.6Alon Zakai
Conflicts: tools/shared.py
2013-11-14Merge pull request #1809 from juj/gles2_getsAlon Zakai
GLES2 glGetXXs()
2013-11-14simplify other.test_emcc check for micro-opts, to not be so finickyAlon Zakai
2013-11-14fix bug with linking bullet without any metadata whatsoever; fixes ↵Alon Zakai
other.test_static_link on llvm 3.3
2013-11-14disable asm2x86.test_sqlite due to legalization error on llvm 3.3Alon Zakai
2013-11-14ensure a >>> coercion on unsigned comparisons, even if the input is an i29 ↵Alon Zakai
which would be coerced using an &; fixes asm1.test_sqlite on llvm 3.3
2013-11-14handle odd types like i24 in makeSignOp, fixes asm1.test_fuzz on llvm 3.3Alon Zakai
2013-11-14update test_pgoAlon Zakai
2013-11-14Merge pull request #1802 from Daft-Freak/patch-2juj
CMake: only append to LINK_FLAGS if they exist
2013-11-14Implement more complete glGetXXv() for GLES2 binary shader format and shader ↵Jukka Jylänki
compiler enums that WebGL will not implement for us. Fixes #1803.
2013-11-14CMake: only append to LINK_FLAGS if they existDaft-Freak
Prevents an error similar to: ERROR root: props-NOTFOUND: No such file or directory
2013-11-14Adjust other.test_preprocess to not include a path delimiter in the string ↵Jukka Jylänki
that it tests for successfully preprocessed file. In linux, the output line would contain "tests/hello_world.c", but on Windows, the equivalent line is "tests\\hello_world.c". Fixes other.test_preprocess on Windows.
2013-11-13don't show both errors and warnings on undefined symbolsAlon Zakai
2013-11-13test for multiple undefined symbolsAlon Zakai
2013-11-13tidy up case of first letter in error/warningAlon Zakai
2013-11-13warn on missing symbols by default; fixes #1794Alon Zakai
2013-11-13Merge pull request #1798 from juj/gles2_max_program_lengthsjuj
GLES2 max program identifier lengths.
2013-11-14Implement support for glGetProgramiv(GL_ACTIVE_UNIFORM_MAX_LENGTH) and ↵Jukka Jylänki
glGetProgramiv(GL_ACTIVE_ATTRIBUTE_MAX_LENGTH). Test this as part of gles2_uniform_arrays.cpp. Closes #1796.
2013-11-13Merge pull request #1800 from juj/fix_test_outlineAlon Zakai
Fix test_outline on Windows.
2013-11-13Merge pull request #1797 from juj/egl_context_stateAlon Zakai
Egl context state
2013-11-13set TOTAL_MEMORY to default to powers of two, for nowAlon Zakai
2013-11-13note on linpackAlon Zakai
2013-11-13Use CMake to build zlib in test other.test_outline on Windows. This test did ↵Jukka Jylänki
not pass since 'sh ./configure' was attempted to build on Windows.
2013-11-13Delete tests/zlib/zconf.h file from the zlib source tree, since it is an ↵Jukka Jylänki
automatically generated file during configure step. Add Emscripten-specific mod to make zlib CMakeLists.txt build succeed.
2013-11-13Add CMakeLists.txt from https://github.com/madler/zlib/releases/tag/v1.2.5 ↵Jukka Jylänki
to tests/zlib to be able to build it on Windows via CMake.
2013-11-13Write src.cpp in unit test in binary mode so that line endings are stored as ↵Jukka Jylänki
'\n' on Windows as well. Fixes test other.test_fs_stream_proto on Windows, where the test assert()s on the binary file size of the written src.cpp (Windows '\r\n' line endings would bloat the size slightly, causing test failure).
2013-11-13Add unit test for EGL context creation and confirming that #1775 and #1793 work.Jukka Jylänki
2013-11-13Add concepts of current context, and current draw and read surfaces on that ↵Jukka Jylänki
context. Implement functions eglGetCurrentSurface(), eglGetCurrentDisplay() and eglGetCurrentContext(). Allow passing EGL_NO_SURFACE and EGL_NO_CONTEXT to eglMakeCurrent. Fixes #1793 and #1775.
2013-11-13Rename redundant wording EGL.eglErrorCode to just EGL.errorCode.Jukka Jylänki
2013-11-12don't print anything in exit(); fixes #1791Alon Zakai
2013-11-12make DEAD_FUNCTIONS work on js library functions tooAlon Zakai
2013-11-12simplify benchmark suite codeAlon Zakai
2013-11-12version 1.7.51.7.5Alon Zakai
2013-11-12ignore first L when demangling, literalness is irrelevant to the main nameAlon Zakai
2013-11-12refactor demanglerAlon Zakai
2013-11-12demangle constructorsAlon Zakai
2013-11-12demangle new and deleteAlon Zakai
2013-11-11version 1.7.41.7.4Alon Zakai
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-11version 1.7.31.7.3Alon Zakai