summaryrefslogtreecommitdiff
path: root/check.py
diff options
context:
space:
mode:
authorThomas Lively <7121787+tlively@users.noreply.github.com>2019-09-27 16:53:26 -0700
committerGitHub <noreply@github.com>2019-09-27 16:53:26 -0700
commit3c27bc8267a52661ecfc2e1a369585ef420a6055 (patch)
tree688f8ab85d37f212b87e15bcd0b3d3217ed01681 /check.py
parent3bba1955745ce0aae8e76c5e88dd46ab5b6612d6 (diff)
downloadbinaryen-3c27bc8267a52661ecfc2e1a369585ef420a6055.tar.gz
binaryen-3c27bc8267a52661ecfc2e1a369585ef420a6055.tar.bz2
binaryen-3c27bc8267a52661ecfc2e1a369585ef420a6055.zip
Add feature flags and validation to wasm-metadce (#2364)
Sometimes wasm-metadce is the last tool to run over a binary in Emscripten, and in that case it needs to know what features are enabled in order to emit a valid binary. For example it needs to know whether to emit a data count section.
Diffstat (limited to 'check.py')
-rwxr-xr-xcheck.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/check.py b/check.py
index 18b336dfc..9da8ebe0d 100755
--- a/check.py
+++ b/check.py
@@ -264,7 +264,7 @@ def run_wasm_metadce_tests():
print('..', t)
t = os.path.join(test_dir, 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)
expected = t + '.dced'
with open('a.wast') as seen: