summaryrefslogtreecommitdiff
path: root/auto_update_tests.py
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2020-04-13 19:11:55 -0700
committerGitHub <noreply@github.com>2020-04-13 19:11:55 -0700
commit9ee2706337a48c503492d8acb9c4117a017f2b87 (patch)
treea486e14977edbe83ee7a14879312397bf1c77a73 /auto_update_tests.py
parent1bddd6be5416be08d92d0b4a8248decb400b60e0 (diff)
downloadbinaryen-9ee2706337a48c503492d8acb9c4117a017f2b87.tar.gz
binaryen-9ee2706337a48c503492d8acb9c4117a017f2b87.tar.bz2
binaryen-9ee2706337a48c503492d8acb9c4117a017f2b87.zip
Fix auto updater on spec tests after #2755 (#2763)
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)