aboutsummaryrefslogtreecommitdiff
path: root/tests/test_other.py
AgeCommit message (Collapse)Author
2014-01-06other.test_emcc fixes for fastcompAlon Zakai
2013-12-30disable some other.* tests in fastcompAlon Zakai
2013-12-30fix --save-bc in fastcompAlon Zakai
2013-12-30fix other.test_crunchAlon Zakai
2013-12-30Merge pull request #1946 from juj/default_obj_extjuj
--default-obj-ext
2013-12-29Define behavior that 'emcc -c a.c -o dir/' shall compile and generate object ↵Jukka Jylänki
file 'dir/a.o'. Previous behavior when directory was specified in -o was accidental, and it generated an object file 'dir/a_0.o'. Add new command line option --default-obj-ext that allows specifying the file suffix that is used when the output object filename is generated in this manner. '.o' is a good default suffix since it parallels the existing gcc/clang/linux convention. For Windows Visual Studio+CMake+Emscripten integration, CMake has been hardcoded to assume that if Visual Studio is targeted, the compiler will always generate '.obj' files. Hence having the ability to adjust the default naming scheme with --default-obj-ext enables working around CMake inflexibility, and add support for CMake+VS+Emscripten triple.
2013-12-26fix js libraries in fastcomp; fixes #1948Alon Zakai
2013-12-24properly check for libx.so.1.2.3 types when deciding what to link in ↵Alon Zakai
statically, and improve testing for that; fixes #1886
2013-12-23do not link in dynamic libraries when compiling to bitcode in intermediate ↵Alon Zakai
stages, only link them in when building to js or html. closes #1886
2013-12-21Update test other.test_demangle to pass after the previous commit which ↵Jukka Jylänki
added demangling '_main' to 'main()'.
2013-12-20Merge pull request #1922 from coolwanglu/embed_dot_filesAlon Zakai
--exclude-file
2013-12-19make test_outline more lenientAlon Zakai
2013-12-14test changes for fastcompAlon Zakai
2013-12-14--exclude-fileLu Wang
2013-12-10quote keys in library objects when necessary; fixes #1908Alon Zakai
2013-11-25support C/C++ suffixes in capital formAlon Zakai
2013-11-22Fix other.test_dependency_file on Windows.Jukka Jylänki
2013-11-20test for static linking when using --js-libraryAlon Zakai
2013-11-19Added test for change for issue #1732.Dominic Wong
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-15Fix other.test_preprocess on Linux after regressing it in the previous ↵Jukka Jylänki
commit b3906e91dec32ee13258cee820781c8bf9bb9c1c that fixed it for Windows.
2013-11-14simplify other.test_emcc check for micro-opts, to not be so finickyAlon Zakai
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-13warn on missing symbols by default; fixes #1794Alon 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-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-12ignore first L when demangling, literalness is irrelevant to the main nameAlon Zakai
2013-11-12demangle constructorsAlon Zakai
2013-11-12demangle new and deleteAlon Zakai
2013-11-05use __proto__ when available for new streams, otherwise do a full copy; ↵Alon Zakai
fixes #1759, #1760
2013-10-30improve simd testsAlon Zakai
2013-10-29clean up simd code, fix uint32x4 heap offsets, and add testingAlon Zakai
2013-10-19update other.test_toobigAlon Zakai
2013-10-18fix simd math operations and improve testAlon Zakai
2013-10-18improve simd2 testAlon Zakai
2013-10-18add test_simd2Alon Zakai
2013-10-18add -O2 to simd testAlon Zakai
2013-10-18add test targetAlon Zakai
2013-10-16Merge branch 'fix-module-exports-with-closure-try2' of ↵Alon Zakai
github.com:fadams/emscripten into incoming Conflicts: AUTHORS tests/test_other.py
2013-10-15update test_emccAlon Zakai
2013-10-15removed comment in src/shell.js and explicitly called run_js with ↵Fraser Adams
engine=NODE_JS as requested
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