aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2012-11-11 10:43:20 -0800
committerAlon Zakai <alonzakai@gmail.com>2012-11-11 10:43:20 -0800
commitb328775c6402e477a03abfb3b9c61968c8f5ee6a (patch)
tree2276cfbb933d810433f41d564548d3d84044fc32
parent87acef9548f70a42c5a79a1037b3cc36aeb3a08c (diff)
hide some ugly output in test_local_link
-rwxr-xr-xtests/runner.py2
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):