summaryrefslogtreecommitdiff
path: root/scripts/test/support.py
diff options
context:
space:
mode:
authorThomas Lively <tlively@google.com>2024-06-17 11:16:20 -0700
committerGitHub <noreply@github.com>2024-06-17 18:16:20 +0000
commitd849a43040dfc21d1593283ad38a12a3bd80e17c (patch)
tree7108e97aaff704aa94133d066fc681585a488264 /scripts/test/support.py
parentcf2725b434c724fdcac89f5c2a21e09f33f5a121 (diff)
downloadbinaryen-d849a43040dfc21d1593283ad38a12a3bd80e17c.tar.gz
binaryen-d849a43040dfc21d1593283ad38a12a3bd80e17c.tar.bz2
binaryen-d849a43040dfc21d1593283ad38a12a3bd80e17c.zip
Enable more spec tests (#6669)
Re-triage all the disabled spec tests and re-enable many of them. Improve the module splitting logic to correctly handle (by skipping) quoted modules and their associated assertions.
Diffstat (limited to 'scripts/test/support.py')
-rw-r--r--scripts/test/support.py13
1 files changed, 12 insertions, 1 deletions
diff --git a/scripts/test/support.py b/scripts/test/support.py
index 3a6ed9bc2..43bd00fe8 100644
--- a/scripts/test/support.py
+++ b/scripts/test/support.py
@@ -14,6 +14,7 @@
import filecmp
import os
+import re
import shutil
import subprocess
import sys
@@ -87,6 +88,9 @@ def untar(tarfile, outdir):
shutil.rmtree(tmpdir)
+QUOTED = re.compile(r'\(module\s*(\$\S*)?\s+(quote|binary)')
+
+
def split_wast(wastFile):
# if it's a binary, leave it as is, we can't split it
wast = None
@@ -124,6 +128,7 @@ def split_wast(wastFile):
return j
i = 0
+ ignoring_quoted = False
while i >= 0:
start = wast.find('(', i)
if start >= 0 and wast[start + 1] == ';':
@@ -141,11 +146,17 @@ def split_wast(wastFile):
break
i = to_end(start + 1)
chunk = wast[start:i]
+ if QUOTED.match(chunk):
+ # There may be assertions after this quoted module, but we aren't
+ # returning the module, so we need to skip the assertions as well.
+ ignoring_quoted = True
+ continue
if chunk.startswith('(module'):
+ ignoring_quoted = False
ret += [(chunk, [])]
elif chunk.startswith('(assert_invalid'):
continue
- elif chunk.startswith(('(assert', '(invoke', '(register')):
+ elif chunk.startswith(('(assert', '(invoke', '(register')) and not ignoring_quoted:
# ret may be empty if there are some asserts before the first
# module. in that case these are asserts *without* a module, which
# are valid (they may check something that doesn't refer to a module