diff options
author | Anthony Pesch <inolen@gmail.com> | 2013-07-18 00:12:02 -0700 |
---|---|---|
committer | Anthony Pesch <inolen@gmail.com> | 2013-07-18 00:12:02 -0700 |
commit | 188ec73280543ed636f180fa8204df11c96269fb (patch) | |
tree | 82033635c92b95694fc962394c4dc6f1612b0f09 /tests | |
parent | 475e72dc5539d9c59fc267927441a502c14a178f (diff) |
fixed stderr output to use printErr
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/runner.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py index 9e04c929..f7f6f17c 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -6853,7 +6853,7 @@ def process(filename): other.close() src = open(path_from_root('tests', 'files.cpp'), 'r').read() - self.do_run(src, 'size: 7\ndata: 100,-56,50,25,10,77,123\nloop: 100 -56 50 25 10 77 123 \ninput:hi there!\ntexto\ntexte\n$\n5 : 10,30,20,11,88\nother=some data.\nseeked=me da.\nseeked=ata.\nseeked=ta.\nfscanfed: 10 - hello\nok.\n', + self.do_run(src, 'size: 7\ndata: 100,-56,50,25,10,77,123\nloop: 100 -56 50 25 10 77 123 \ninput:hi there!\ntexto\n$\n5 : 10,30,20,11,88\nother=some data.\nseeked=me da.\nseeked=ata.\nseeked=ta.\nfscanfed: 10 - hello\nok.\ntexte\n', post_build=post, extra_emscripten_args=['-H', 'libc/fcntl.h']) def test_files_m(self): @@ -6885,7 +6885,7 @@ def process(filename): return 0; } ''' - self.do_run(src, 'isatty? 0,0,1\ngot: 35\ngot: 45\ngot: 25\ngot: 15\n', post_build=post) + self.do_run(src, 'got: 35\ngot: 45\ngot: 25\ngot: 15\nisatty? 0,0,1\n', post_build=post) def test_fwrite_0(self): src = r''' |