summaryrefslogtreecommitdiff
path: root/check.py
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2024-03-07 09:30:39 -0800
committerGitHub <noreply@github.com>2024-03-07 09:30:39 -0800
commit920cbc32603fdb8eff8f50283a1788812863f0d3 (patch)
tree6eb970799ef224eddfe4cf721e6ddad282e26915 /check.py
parentadca3a1366f69b3539839b5e518ba263216a5246 (diff)
downloadbinaryen-920cbc32603fdb8eff8f50283a1788812863f0d3.tar.gz
binaryen-920cbc32603fdb8eff8f50283a1788812863f0d3.tar.bz2
binaryen-920cbc32603fdb8eff8f50283a1788812863f0d3.zip
Do not write assertions to split.wast for spec tests (#6383)
As part of our running of spec tests, we split out each module in a test script into a separate text file for processing with wasm-opt. We previously included the test assertions corresponding to the module into that text file, where they were ignored by the legacy text parser. The new parser errors out due to the extra tokens after the module, though, so to avoid problems once we switch to the new parser, stop including the assertions in those text files. Also remove a nearby unused argument as a drive-by cleanup.
Diffstat (limited to 'check.py')
-rwxr-xr-xcheck.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/check.py b/check.py
index 5c0e19ff3..0b5ed5ce7 100755
--- a/check.py
+++ b/check.py
@@ -242,9 +242,9 @@ def run_spec_tests():
for module, asserts in support.split_wast(wast):
print(' testing split module', split_num)
split_num += 1
- support.write_wast('split.wast', module, asserts)
+ support.write_wast('split.wast', module)
run_opt_test('split.wast') # also that our optimizer doesn't break on it
- result_wast_file = shared.binary_format_check('split.wast', verify_final_result=False, original_wast=wast)
+ result_wast_file = shared.binary_format_check('split.wast', verify_final_result=False)
with open(result_wast_file) as f:
result_wast = f.read()
# add the asserts, and verify that the test still passes