diff options
Diffstat (limited to 'auto_update_tests.py')
-rwxr-xr-x | auto_update_tests.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/auto_update_tests.py b/auto_update_tests.py index 14a14f936..1ec7c4ece 100755 --- a/auto_update_tests.py +++ b/auto_update_tests.py @@ -287,7 +287,8 @@ def update_ctor_eval_tests(): print '..', t t = os.path.join('test', 'ctor-eval', t) ctors = open(t + '.ctors').read().strip() - cmd = WASM_CTOR_EVAL + [t, '-o', 'a.wast', '-S', '--ctors', ctors] + # TODO: remove --disable-bulk-memory once default feature set is MVP + cmd = WASM_CTOR_EVAL + [t, '--disable-bulk-memory', '-o', 'a.wast', '-S', '--ctors', ctors] run_command(cmd) actual = open('a.wast').read() out = t + '.out' |