summaryrefslogtreecommitdiff
path: root/tests/test_other.py
AgeCommit message (Collapse)Author
2013-10-14use proper separator in va_argHandler; fixes #1705Alon Zakai
2013-10-13demangle arraysAlon Zakai
2013-10-13add remaining basic demangle typesAlon Zakai
2013-10-13more demangle testingAlon Zakai
2013-10-13demangle referencesAlon Zakai
2013-10-12properly demangle cxxabi crazinessAlon Zakai
2013-10-12refactor out parsing of nested demangled runsAlon Zakai
2013-10-12support demangling constAlon Zakai
2013-10-12demangle basic templatesAlon Zakai
2013-10-12demangle some templatesAlon Zakai
2013-10-12work towards demangling of templatesAlon Zakai
2013-10-12demangle basic paramsAlon Zakai
2013-10-12avoid crash in demangler with special operatorsAlon Zakai
2013-10-11C++ demangle helperAlon Zakai
2013-10-09update other.test_chunkingAlon Zakai
2013-10-09avoid X-(-Y) in js optimizer; fixes #1685Alon Zakai
2013-10-09run relooper in -O1, and do not run js opts thereAlon Zakai
2013-10-05change test_module_exports_with_closure to only execute the run_js test when ↵Fraser Adams
engine == NODE_JS, this test is really checking that the module.exports stuff works in node
2013-10-05replaced tests/Module-exports in path_from_root with 'tests', ↵Fraser Adams
'Module-exports' to be more friendly multiple OSs
2013-10-04Added test_module_exports_with_closure to tests/test_other.py, run with ↵Fraser Adams
./runner.py other.test_module_exports_with_closure
2013-10-03update test_emccAlon Zakai
2013-09-30update test_outlineAlon Zakai
2013-09-23simplify chunk size determination in emscripten.pyAlon Zakai
2013-09-18Add functions em_link_js_library(), em_link_pre_js() and em_link_post_js() ↵Jukka Jylänki
to support linking .js files to executables, while doing dependency tracking on filestamp modifications. For more info, see https://groups.google.com/forum/#!topic/emscripten-discuss/uRbTIB62V7s .
2013-09-13simplify other.test_llvm_nativizer to not rely on libc stuffAlon Zakai
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-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-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-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-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-03support -E in emccAlon Zakai
2013-08-30disable test_stdin in node (temporarily) and v8Alon Zakai
2013-08-29run test_stdin in all JS_ENGINESAnthony 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-26make headless test use its own fileAlon Zakai
2013-08-26move test_nostdincxx from other to sanity, because it causes the cache to be ↵Alon Zakai
cleared, and so cannot be safely run in parallel with other tests
2013-08-22flatten switches in outlinerAlon Zakai
2013-08-19re-enabled non-asm.js shared lib supportAnthony Pesch
2013-08-11initial work on splitting up runner.pyAnthony Pesch