diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-10-05 17:41:21 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-10-05 17:41:21 -0700 |
commit | 0c35d1260b874aba4e3425be824a10f73cb935bc (patch) | |
tree | a97210b72e1f542252a4cbe22d1cc9fcaf69e053 | |
parent | e3a475e335a5629617389d4782bd6044871c9ea7 (diff) |
fix test_files
-rw-r--r-- | tests/runner.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index e56d095f..96895d88 100644 --- a/tests/runner.py +++ b/tests/runner.py @@ -2401,7 +2401,8 @@ if 'benchmark' not in str(sys.argv): other.close() src = open(path_from_root('tests', 'files.cpp'), 'r').read() - self.do_test(src, 'size: 7\ndata: 100,-56,50,25,10,77,123\ninput:hi there!\ntexto\ntexte\n5 : 10,30,20,11,88\nother=some data.\nseeked=me da.\nseeked=ata.\nseeked=ta.\nfscanfed: 10 - hello\n', post_build=post) + self.do_test(src, 'size: 7\ndata: 100,-56,50,25,10,77,123\ninput:hi there!\ntexto\ntexte\n5 : 10,30,20,11,88\nother=some data.\nseeked=me da.\nseeked=ata.\nseeked=ta.\nfscanfed: 10 - hello\n', + post_build=post, extra_emscripten_args=['-H', 'libc/fcntl.h']) def test_folders(self): def add_pre_run(filename): |