diff options
Diffstat (limited to 'auto_update_tests.py')
-rwxr-xr-x | auto_update_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/auto_update_tests.py b/auto_update_tests.py index cfc29e5f8..8d681d214 100755 --- a/auto_update_tests.py +++ b/auto_update_tests.py @@ -305,7 +305,7 @@ def update_metadce_tests(): print('..', t) t = os.path.join(options.binaryen_test, 'metadce', t) graph = t + '.graph.txt' - cmd = WASM_METADCE + [t, '--graph-file=' + graph, '-o', 'a.wast', '-S'] + cmd = WASM_METADCE + [t, '--graph-file=' + graph, '-o', 'a.wast', '-S', '-all'] stdout = run_command(cmd) actual = open('a.wast').read() out = t + '.dced' |