diff options
Diffstat (limited to 'scripts/test')
-rw-r--r-- | scripts/test/shared.py | 1 | ||||
-rw-r--r-- | scripts/test/support.py | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/scripts/test/shared.py b/scripts/test/shared.py index 54c7c861d..d3af99455 100644 --- a/scripts/test/shared.py +++ b/scripts/test/shared.py @@ -424,7 +424,6 @@ SPEC_TESTS_TO_SKIP = [ 'utf8-invalid-encoding.wast', # 'register' command - 'imports.wast', 'linking.wast', # Misc. unsupported constructs diff --git a/scripts/test/support.py b/scripts/test/support.py index a4a61fc22..7313169fa 100644 --- a/scripts/test/support.py +++ b/scripts/test/support.py @@ -145,7 +145,7 @@ def split_wast(wastFile): ret += [(chunk, [])] elif chunk.startswith('(assert_invalid'): continue - elif chunk.startswith(('(assert', '(invoke')): + elif chunk.startswith(('(assert', '(invoke', '(register')): # 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 |