diff options
author | Sam Clegg <sbc@chromium.org> | 2019-11-22 00:23:47 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-22 00:23:47 -0800 |
commit | 5e81015f69262657186b3f3bf03bfa28016c5a0d (patch) | |
tree | c76a9fe07a9247af0eec1b9801b650b966fbf6de /test/interp | |
parent | e9b42933377814248b64c4fed9f58bae219443c6 (diff) | |
download | wabt-5e81015f69262657186b3f3bf03bfa28016c5a0d.tar.gz wabt-5e81015f69262657186b3f3bf03bfa28016c5a0d.tar.bz2 wabt-5e81015f69262657186b3f3bf03bfa28016c5a0d.zip |
Update spec testsuite (#1237)
The only major change to the interpreter is to move segment
initialization out `ReadBinaryInterp` (in the binary reader) and into
interp.cc. This is because the test suite now expects out of bound
semgments to be reported during initialization rather than reported
as validation errors.
Diffstat (limited to 'test/interp')
-rw-r--r-- | test/interp/logging-all-opcodes.txt | 14 | ||||
-rw-r--r-- | test/interp/start-failure.txt | 2 | ||||
-rw-r--r-- | test/interp/tracing-all-opcodes.txt | 2 |
3 files changed, 9 insertions, 9 deletions
diff --git a/test/interp/logging-all-opcodes.txt b/test/interp/logging-all-opcodes.txt index dfb3a251..2bee9f5b 100644 --- a/test/interp/logging-all-opcodes.txt +++ b/test/interp/logging-all-opcodes.txt @@ -2651,11 +2651,11 @@ 0001b1a: 00 ; i32 literal 0001b1b: 0b ; end 0001b1c: 02 ; num elems -0001b1d: 01 ; elem expr function index -0001b1e: 01 ; elem expr function index +0001b1d: 01 ; elem function index +0001b1e: 01 ; elem function index ; elem segment header 1 -0001b1f: 01 ; segment flags -0001b20: 70 ; funcref +0001b1f: 05 ; segment flags +0001b20: 70 ; elem expr list type 0001b21: 00 ; num elems 0001b16: 0b ; FIXUP section size ; section "DataCount" (12) @@ -7456,7 +7456,7 @@ 0003948: 00 ; section size (guess) 0003949: 01 ; num data segments ; data segment header 0 -000394a: 01 +000394a: 01 ; segment flags 000394b: 00 ; data segment size ; data segment data 0 0003948: 03 ; FIXUP section size @@ -8310,7 +8310,7 @@ BeginModule(version: 1) OnElemSegmentElemExpr_RefFunc(index: 0, func_index: 1) OnElemSegmentElemExpr_RefFunc(index: 0, func_index: 1) EndElemSegment(0) - BeginElemSegment(index: 1, table_index: 0, flags: 1, elem_type: funcref) + BeginElemSegment(index: 1, table_index: 0, flags: 5, elem_type: funcref) OnElemSegmentElemExprCount(index: 1, count: 0) EndElemSegment(1) EndElemSection @@ -12985,7 +12985,7 @@ i64.trunc_s:sat/f32() => i64.trunc_u:sat/f32() => i64.trunc_s:sat/f64() => i64.trunc_u:sat/f64() => -memory.init() => error: out of bounds memory access +memory.init() => error: out of bounds memory access: memory.init out of bounds data.drop() => memory.copy() => memory.fill() => diff --git a/test/interp/start-failure.txt b/test/interp/start-failure.txt index 04b91762..b3513384 100644 --- a/test/interp/start-failure.txt +++ b/test/interp/start-failure.txt @@ -5,5 +5,5 @@ (start $start) ) (;; STDOUT ;;; -error running start function: unreachable executed +error initialiazing module: unreachable executed ;;; STDOUT ;;) diff --git a/test/interp/tracing-all-opcodes.txt b/test/interp/tracing-all-opcodes.txt index 94e06e8d..b88a87c3 100644 --- a/test/interp/tracing-all-opcodes.txt +++ b/test/interp/tracing-all-opcodes.txt @@ -1612,7 +1612,7 @@ i64.trunc_u:sat/f64() => #0. 5012: V:1 | i32.const 2 #0. 5020: V:2 | i32.const 3 #0. 5028: V:3 | memory.init $0, $0 -memory.init() => error: out of bounds memory access +memory.init() => error: out of bounds memory access: memory.init out of bounds >>> running export "data.drop": #0. 5044: V:0 | data.drop $0 #0. 5052: V:0 | return |