Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-08-31 | better error message | Alon Zakai | |
2013-08-30 | don't close client sockets by default in echo server enabling TCP teardown ↵ | Anthony Pesch | |
to succeed | |||
2013-08-30 | disable test_stdin in node (temporarily) and v8 | Alon Zakai | |
2013-08-30 | fix test_emscripten_get_now | Alon Zakai | |
2013-08-30 | fix use of NODE_JS in test_sockets | Alon Zakai | |
2013-08-30 | update package.json to work with older npms | Alon Zakai | |
2013-08-30 | Merge pull request #1557 from inolen/sockfs | Alon Zakai | |
getaddrinfo, freeaddrinfo, getnameinfo support and sockfs | |||
2013-08-30 | Remove compilation warnings on msvc10 tests. Add missing --preload-file ↵ | Jukka Jylänki | |
directives to SDL samples when building from msvc10. Removed the 'new' sample from msvc10 build since it is not designed to be built directly. Fixes https://groups.google.com/forum/#!topic/emscripten-discuss/HVavL5SPUrk | |||
2013-08-30 | don't re-use ports between different harnesses | Anthony Pesch | |
2013-08-30 | - moved hostname resolution functions to DNS object | Anthony Pesch | |
- minor whitespace fixes | |||
2013-08-29 | Merge pull request #1311 from juj/emscripten_get_now | Alon Zakai | |
emscripten_get_now enabled for SpiderMonkey, optimization and test. | |||
2013-08-29 | Merge pull request #1555 from inolen/tty_fixes | Alon Zakai | |
added stubs for tcgetattr and tcsetattr, minor node tty fixes | |||
2013-08-29 | Merge pull request #1572 from rharkeadsk/fix-stdio-fileno-constants | Alon Zakai | |
Fix STD*_FILENO constants in JavaScript to match C | |||
2013-08-29 | run test_stdin in all JS_ENGINES | Anthony Pesch | |
2013-08-29 | updated test_stdin to work in SM shell | Anthony Pesch | |
2013-08-29 | - added tests for tcgetattr / tcsetattr | Anthony 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-29 | - added stubs for tcgetattr and tcsetattr | Anthony Pesch | |
- added fixes for tty get_char in the node environment | |||
2013-08-29 | allow null second param in createPreloadedFile|createDataFile so that file ↵ | Alon Zakai | |
packager does not need PATH, and works through closure | |||
2013-08-29 | Pass relative paths instead of absolute paths in Visual Studio include ↵ | Jukka Jylänki | |
directories for the glbook samples in msvc10 tests. Fixes #1568. | |||
2013-08-29 | Update STD*_FILENO constants in settings.js to match unistd.h | Ranger Harke | |
They are 1,2,3 in unistd.h (correct) but were 0,1,2 in settings.js, so calling `cDefine('STDOUT_FILENO')` (for example) would return the incorrect value. This addresses issue #1570, but not #1408. | |||
2013-08-29 | Formatting. | Jukka Jylänki | |
2013-08-29 | emscripten_get_now enabled for SpiderMonkey, optimization and test for shell ↵ | Jukka Jylänki | |
and browser. | |||
2013-08-29 | lazy evaluate ws module require | Anthony Pesch | |
2013-08-29 | - created SOCKFS | Anthony Pesch | |
- added support for node-based listen servers - updated tests to also test against compiled listen servers | |||
2013-08-29 | - added raw addr / hostname lookup support | Anthony Pesch | |
- added getaddrinfo, freeaddrinfo, getnameinfo and gai_strerror stub - added tests for getaddrinfo and getnameinfo - consolidated test_gethostbyname and test_sockets_gethostbyname | |||
2013-08-29 | - minor refactoring to new address translation functions to support better ↵ | Anthony Pesch | |
"raw" functionality - moved test_inet* tests into sockets test suite | |||
2013-08-28 | Merge pull request #1567 from rharkeadsk/fix-device-permissions | Alon Zakai | |
Fix permissions set by FS.createDevice | |||
2013-08-28 | fix tests that check for code not changing, given the recent sorting of ↵ | Alon Zakai | |
functions | |||
2013-08-28 | sort generated functions | Alon Zakai | |
2013-08-28 | Update remaining tests to use registerDevice/mkdev | Ranger Harke | |
2013-08-28 | Update test_unistd_io to use registerDevice/mkdev | Ranger Harke | |
2013-08-28 | Fix permissions set by FS.createDevice | Ranger Harke | |
The read and write permission bits were reversed. A test has been added to ensure that this works. | |||
2013-08-28 | Update AUTHORS file | Ranger Harke | |
2013-08-27 | added extname to path library | Anthony Pesch | |
2013-08-27 | Merge pull request #1564 from inolen/sdl_fullscreen_fix | Alon Zakai | |
support SDL_WM_ToggleFullScreen when initiated by key input | |||
2013-08-27 | FS.loadFilesFromDB|saveFilesToDB | Alon Zakai | |
2013-08-27 | support SDL_WM_ToggleFullScreen when initiated by key input | Anthony Pesch | |
2013-08-27 | copy the entire datafile in one chunk into the heap, avoiding one malloc per ↵ | Alon Zakai | |
file, but at the cost of not being able to free them | |||
2013-08-27 | own preloaded files, avoiding an unnecessary copy | Alon Zakai | |
2013-08-27 | fix outliner bug with checking when switch cases need to be joined | Alon Zakai | |
2013-08-27 | fix outlining separation of case statements ending in continue or return | Alon Zakai | |
2013-08-27 | better outlining debugging output | Alon Zakai | |
2013-08-27 | fix test_cases/callwithstructural | Alon Zakai | |
2013-08-26 | handle illegal values in structural constants in calls; fixes #1318 | Alon Zakai | |
2013-08-26 | handle structural constants in calls | Alon Zakai | |
2013-08-26 | parse llvm structural types in parameter tokens | Alon Zakai | |
2013-08-26 | emit less unnecessary code in side modules | Alon Zakai | |
2013-08-26 | re-parse function types after types are fully analyzed, so we get the ↵ | Alon Zakai | |
signatures of functions receiving struct types as parameters | |||
2013-08-26 | make headless test use its own file | Alon Zakai | |
2013-08-26 | move 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 |