aboutsummaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
2013-06-19Implement source maps for optimized builds.Jez Ng
2013-06-19Move source mapping files into their own folder.Jez Ng
2013-06-19Add test for HTML source map generation.Jez Ng
2013-06-19Add test for source maps.Jez Ng
Tweak behavior of post_build; the `post2` hook now expects a function.
2013-06-18Favor explicit parameter passing over string manipulation.Jez Ng
2013-06-18Actually exit test runner when browser tests are done.Jez Ng
Using __del__ didn't work for me with Python 2.7.2 on OS X.
2013-06-18Make more tests use btest().Jez Ng
Also fix test_glgears_deriv so that it actually animates its gears.
2013-06-18Merge pull request #1304 from int3/sdlAlon Zakai
Fix SDL color encoding
2013-06-18Missed out making some tests portable.Jez Ng
2013-06-18Merge pull request #1307 from int3/node-version-updateAlon Zakai
Update minimum node version to v0.8.
2013-06-18Update minimum node version.Jez Ng
2013-06-18disable new test_varargs in x86 (requires le32 now)Alon Zakai
2013-06-18Merge pull request #1301 from Manny-MADE/va_lists_fixAlon Zakai
BUGFIX: lists cannot be copied as "llvm_va_copy" was broken, didn't copy list offset
2013-06-18add wip inlinejs2 testAlon Zakai
2013-06-18CHANGED: using spaces instead of tabs to match project codestylemanny/MADE
2013-06-18CHANGED: using spaces instead of tabs to match project codestylemanny/MADE
2013-06-18ADDED: test to ensure va_lists work properly when copied, reinitialized etc.manny/MADE
2013-06-17Make browser tests nicer to run.Jez Ng
A bunch of misc changes, including fixing compile-time warnings, and muting the Python server request log.
2013-06-17Fix SDL color encoding.Jez Ng
Little-endian + RGBA means that red is located at the lowest-order bits, not the highest. The hello_world_sdl test is now portable, because we no longer write to individual bytes. We also add a test for a completely blank screen, which should be black, not red. Closes #1287, #761, #765.
2013-06-17improve inline js testAlon Zakai
2013-06-17Merge pull request #1280 from juj/abs_path_checkAlon Zakai
Improve absolute path warning detection to work on Windows, and make the...
2013-06-17Added test for float.h agreeing with sizeof.David Barksdale
2013-06-17Merge pull request #1288 from juj/dont_package_hidden_filesAlon Zakai
Report debug diagnostics in file packager if EMCC_DEBUG=1. Make file pac...
2013-06-17Merge pull request #1286 from michaeljbishop/looping-audio-testAlon Zakai
Added test for SDL_Mix that includes looping audio.
2013-06-13do not eliminate dead code in EXPORT_ALLAlon Zakai
2013-06-13Report debug diagnostics in file packager if EMCC_DEBUG=1. Make file ↵Jukka Jylänki
packager skip all path components that have a path starting with '.', like ('.git/xxx/yyy/'), or the filename starts with '.', or the file is a Win32 hidden file. Explicitly specified files on the command line are always packaged, even if they start with '.' or are hidden. Add unit tests to check that it works.
2013-06-13Added test for SDL_Mix that includes looping audio.Michael Bishop
The test demonstrates that looping produces gaps in the sound.
2013-06-13Improve absolute path warning detection to work on Windows, and make the ↵Jukka Jylänki
warning message more informative.
2013-06-10fix test_relooperAlon Zakai
2013-06-08 - Fix for mod property of SDL key eventsAnthony Pesch
- Added misc SDL functions (SDL_GetKeyName, SDL_GetAppState, SDL_SetGammaRamp) - Added modifiers to test_sdl_key
2013-06-08Don't use the host machine's shared object extensionAnthony Pesch
2013-06-07lua commentAlon Zakai
2013-06-07allow building only in test runnerAlon Zakai
2013-06-07Make lrint more correct. Closes #1265.Jez Ng
2013-06-07eliminate loop helper variablesAlon Zakai
2013-06-06move asm loop optimization into last phaseAlon Zakai
2013-06-05Fix typo.Jez Ng
2013-06-04Merge pull request #1246 from int3/sscanf-capsAlon Zakai
Add test for uppercase format specifiers in sscanf.
2013-06-04Add test for capitalized sscanf format specifiers.Jez Ng
2013-06-04Merge branch 'incoming' of github.com:kanaka/emscripten into incomingAlon Zakai
2013-06-04Merge pull request #1225 from inolen/errnoAlon Zakai
synced library.js errno codes with sys/errno.h
2013-06-04Updated tests to reflect new error valuesAnthony Pesch
2013-06-03Fix frexp does not accept negative numbersFrits Talbot
Add frexp unit tests
2013-06-03Merge pull request #1236 from juj/skip_test_symlinkAlon Zakai
Skip other.test_symlink on Windows, since it doesn't have them.
2013-06-03disable strotoll tests in s_x_xAlon Zakai
2013-06-03make test_statvfs more robustAlon Zakai
2013-06-03disable some test_cases tests in s_x_xAlon Zakai
2013-06-03fix whitespace changes that broke some testsAlon Zakai
2013-06-03Skip other.test_symlink on Windows, since it doesn't have them. NTFS does ↵Jukka Jylänki
have junction points, but it's a rather rarely used feature, and not a common dev aid like it is for linux/osx users.
2013-06-02create /dev/null; issue #1226Alon Zakai