aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2011-09-25 18:56:58 -0700
committerAlon Zakai <alonzakai@gmail.com>2011-09-25 18:56:58 -0700
commit80e2f0333d58b56fb33f91f17574158f3a39e04c (patch)
tree5bcda082e2650b71278675a26d279f8276d8b372 /tests/runner.py
parent39b93880df73cb06c33d7eb393b150a7c961f4bd (diff)
fix header parsing bug and unistd.h header; fixes unistd_confstr
Diffstat (limited to 'tests/runner.py')
-rw-r--r--tests/runner.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/runner.py b/tests/runner.py
index 610f1e14..2c0b3e72 100644
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -189,6 +189,7 @@ class RunnerCore(unittest.TestCase):
except OSError:
os.chdir(self.get_dir()) # ensure the current working directory is valid
compiler_output = timeout_run(Popen([EMSCRIPTEN, filename + ('.o.ll' if append_ext else ''), '-o', filename + '.o.js'] + settings + extra_args, stdout=PIPE, stderr=STDOUT), TIMEOUT, 'Compiling')
+ #print compiler_output
# Detect compilation crashes and errors
if compiler_output is not None and 'Traceback' in compiler_output and 'in test_' in compiler_output: print compiler_output; assert 0