diff options
Diffstat (limited to 'check.py')
-rwxr-xr-x | check.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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' |