aboutsummaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
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-10Merge pull request #1605 from juj/mingw32make_nmake_cmakeAlon Zakai
Mingw32make nmake cmake
2013-09-10Remove Hello_Triangle_KD project from msvc tests, since it depends on ↵Jukka Jylänki
nonexisting OpenKode.
2013-09-10Remove the use of solution folders in msvc10 tests, since that feature is ↵Jukka Jylänki
not supported in VS Express.
2013-09-10Update docs on test.Jukka Jylänki
2013-09-10Fix previous merge.Jukka Jylänki
2013-09-10Skip nmake test in test_cmake on Windows if PATH doesn't have nmake set up.Jukka Jylänki
2013-09-10Add test that NMake works with CMake. Closes #1069.Jukka Jylänki
2013-09-09Merge pull request #1583 from juj/cmake_improvementsAlon Zakai
Cmake improvements
2013-09-08proxy input eventsAlon Zakai
2013-09-08test file preloading in workerAlon Zakai
2013-09-08add test harness support for proxying, test_sdl_canvas_proxy passesAlon Zakai
2013-09-08proxy canvas writesAlon Zakai
2013-09-08stubs for proxied getImageData/putImageDataAlon Zakai
2013-09-08initial setup for proxying: add option and generate separate html and jsAlon Zakai
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-06Use logging.error() instead of print >> sys.stderr in test_cmake to report ↵Jukka Jylänki
errors.
2013-09-06Document tests in test_cmake.Jukka Jylänki
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-04Adjust EM_BUILD_VERBOSE environment variable to take values 0,1,2 or 3, with ↵Jukka Jylänki
the following meanings: 0 - No verbose build. Emscripten will mute stdout and stderr invokations of external tools (configure, cmake, make). Stdout and stderr of those runs will be logged to file (the old mechanism) 1 - Print stderr. 2 - Print stderr and stdout. 3 - Print stderr and stdout, and invoke make with VERBOSE=1.
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-04Remove default filename suffix specification in CMake toolchain, since ↵Jukka Jylänki
test_openjpeg will then fail to configure.
2013-09-04Have test_cmake also test that running 'emconfigure cmake' works, in ↵Jukka Jylänki
addition to running cmake directly.
2013-09-04Remove the need to pass CMAKE_MODULE_PATH to CMake by weakly setting it in ↵Jukka Jylänki
the toolchain file.
2013-09-04Fix other.test_cmake when EM_BUILD_VERBOSE is not defined.Jukka Jylänki
2013-09-04Add a test to ensure that EMSCRIPTEN=1 variable is set in CMake when building.Jukka Jylänki
2013-09-04Delete Emscripten_unix.cmake, the previous commit makes that obsolete!Jukka Jylänki
2013-09-04Utilize EM_BUILD_VERBOSE in other.test_cmake.Jukka Jylänki
2013-09-04Improve CMake toolchain file to use response files. Avoid the compiler ↵Jukka Jylänki
detection mechanism that could throw CMake off depending on what is in Windows PATH. Use CMAKE_EXECUTABLE_SUFFIX to specify whether to build .html or .js.
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