summaryrefslogtreecommitdiff
path: root/check.py
diff options
context:
space:
mode:
Diffstat (limited to 'check.py')
-rwxr-xr-xcheck.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/check.py b/check.py
index f75ef50e0..6b272f4b4 100755
--- a/check.py
+++ b/check.py
@@ -116,6 +116,8 @@ def run_ctor_eval_tests():
print('..', os.path.basename(t))
ctors = open(t + '.ctors').read().strip()
cmd = shared.WASM_CTOR_EVAL + [t, '-all', '-o', 'a.wat', '-S', '--ctors', ctors]
+ if 'ignore-external-input' in t:
+ cmd += ['--ignore-external-input']
support.run_command(cmd)
actual = open('a.wat').read()
out = t + '.out'