aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
AgeCommit message (Collapse)Author
2012-03-30Merge pull request #328 from ehsan/ogre_upstreamAlon Zakai
Upstream the work I did for porting Ogre
2012-03-29basic support for -M and -MMAlon Zakai
2012-03-29bundle preloaded files also when not compressing themAlon Zakai
2012-03-29update test_emccAlon Zakai
2012-03-28add testcase for issue 324Alon Zakai
2012-03-28do not use impure stuff for stdin etc, it makes comparing to native builds ↵Alon Zakai
harder
2012-03-28Implement isdigit_l and isxdigit_lEhsan Akhgari
We ignore the locales for now
2012-03-28rename alloca/stack testsAlon Zakai
2012-03-27do not use blob constructor if not present, and closure workaroundAlon Zakai
2012-03-27support wav and mp3 audio suffixes tooAlon Zakai
2012-03-27support for playing audio chunks through SDL mixAlon Zakai
2012-03-26compress all data files into one big fileAlon Zakai
2012-03-24properly match SDL mousebuttons to DOM buttonsAlon Zakai
2012-03-24make mouse events relative to canvas, and at right frequencyAlon Zakai
2012-03-24SDL mouse support and emscripten_set_main_loopAlon Zakai
2012-03-23SDL_SizeText and some refactoringAlon Zakai
2012-03-23optimize SDL_FillRectAlon Zakai
2012-03-23fix sdl keyboard input and add a testAlon Zakai
2012-03-23minimal support for SDL text renderingAlon Zakai
2012-03-23improve sdl image test to include blits of nonequal size surfacesAlon Zakai
2012-03-23rename some testsAlon Zakai
2012-03-22do preRun and postRun only if we actually runAlon Zakai
2012-03-21fix some bugs with preloading of entire directoriesAlon Zakai
2012-03-20fix breakage with calling LLVM_AR with pythonAlon Zakai
2012-03-20Merge pull request #312 from SiggyBar/incomingAlon Zakai
Misc fixes for Windows.
2012-03-20avoid stack explosion in ccallAlon Zakai
2012-03-20Misc fixes for Windows.Sigmund Vik
Most of these changes have to do with how python scripts are invoked. For Linux, 'Popen([EMCC] + args)' works because the first line in emcc is '#!/usr/bin/env python'. On Windows, the python interpreter has to be explicitly invoked, e.g. 'Popen(['python', EMCC] + args)'. Note that there is no harm in explicitly invoking the python interpreter on Linux, so this works on both platforms. For Windows, execvp() behaves differently than on Linux: http://mail.python.org/pipermail/python-list/2002-July/763863.html http://msdn.microsoft.com/en-us/library/3xw6zy53.aspx This causes many strange things to happen as the parent process terminated before its children. In this change the use of execvp() has been replaced with subprocess.call(). This change also fixes some code that assumed that the path separator always is '/', but for Windows it is '\'. And where the path module can be required, we use path.normalize() and path.resolve() to check if a filename is absolute in a platform agnostic manner.
2012-03-19fix test_emcc_multifileAlon Zakai
2012-03-19remove .compress if the compress wasn't worth itAlon Zakai
2012-03-19fix test_popplerAlon Zakai
2012-03-19refactor use of this[..] in shell.js to use Module[..]Alon Zakai
2012-03-17fix test_emcc_compressed_fileAlon Zakai
2012-03-17complete test for image compressionAlon Zakai
2012-03-17fix bug with compressed imagesAlon Zakai
2012-03-17unify data and image file preloadingAlon Zakai
2012-03-16preload/embed file compression option in emccAlon Zakai
2012-03-16source code compression option in emccAlon Zakai
2012-03-16allow preloading/embedding of entire directories using emccAlon Zakai
2012-03-15preload images for SDLAlon Zakai
2012-03-15almost working SDL_image test, just need async decodingAlon Zakai
2012-03-15support files in directories in --embed-file and --preload-fileAlon Zakai
2012-03-15html tests refactoringAlon Zakai
2012-03-15add file preloading in browsersAlon Zakai
2012-03-15improve test runner http server to handle timeoutsAlon Zakai
2012-03-15refactor html testsAlon Zakai
2012-03-14support c strings as parameters in bindings generatorAlon Zakai
2012-03-11fix test_files_m for s_x_xAlon Zakai
2012-03-10fix test_iostreamAlon Zakai
2012-03-10properly implement isattyAlon Zakai
2012-03-10allow Module.stdin,out,err to provide defaults for streamsAlon Zakai