diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/fuzz_opt.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/fuzz_opt.py b/scripts/fuzz_opt.py index 01895c585..62ca41e44 100755 --- a/scripts/fuzz_opt.py +++ b/scripts/fuzz_opt.py @@ -261,7 +261,9 @@ def init_important_initial_contents(): INITIAL_CONTENTS_IGNORE = [ # not all relaxed SIMD instructions are implemented in the interpreter - 'relaxed-simd.wast' + 'relaxed-simd.wast', + # TODO fuzzer and interpreter support for strings + 'strings.wast' ] |