summaryrefslogtreecommitdiff
path: root/auto_update_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'auto_update_tests.py')
-rwxr-xr-xauto_update_tests.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/auto_update_tests.py b/auto_update_tests.py
index 86f47def3..107a5f178 100755
--- a/auto_update_tests.py
+++ b/auto_update_tests.py
@@ -218,6 +218,10 @@ def update_spec_tests():
expected = os.path.join(shared.get_test_dir('spec'), 'expected-output', os.path.basename(t) + '.log')
if os.path.isfile(expected):
stdout = support.run_command(cmd, stderr=subprocess.PIPE)
+ # filter out binaryen interpreter logging that the spec suite
+ # doesn't expect
+ filtered = [line for line in stdout.splitlines() if not line.startswith('[trap')]
+ stdout = '\n'.join(filtered) + '\n'
with open(expected, 'w') as o:
o.write(stdout)