diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-11-11 10:43:20 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-11-11 10:43:20 -0800 |
commit | b328775c6402e477a03abfb3b9c61968c8f5ee6a (patch) | |
tree | 2276cfbb933d810433f41d564548d3d84044fc32 | |
parent | 87acef9548f70a42c5a79a1037b3cc36aeb3a08c (diff) |
hide some ugly output in test_local_link
-rwxr-xr-x | tests/runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index 3014fe9a..7523036b 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -7567,7 +7567,7 @@ f.close() ''') Popen(['python', EMCC, os.path.join(self.get_dir(), 'libfile.cpp'), '-o', 'libfile.so']).communicate() - Popen(['python', EMCC, os.path.join(self.get_dir(), 'main.cpp'), os.path.join(self.get_dir(), 'subdir', 'libfile.so'), '-L.']).communicate() + Popen(['python', EMCC, os.path.join(self.get_dir(), 'main.cpp'), os.path.join(self.get_dir(), 'subdir', 'libfile.so'), '-L.'], stderr=PIPE).communicate() self.assertContained('hello from lib', run_js(os.path.join(self.get_dir(), 'a.out.js'))) def test_runtimelink_multi(self): |