summaryrefslogtreecommitdiff
path: root/test/parse/expr
diff options
context:
space:
mode:
Diffstat (limited to 'test/parse/expr')
-rw-r--r--test/parse/expr/bad-binary-one-expr.txt4
-rw-r--r--test/parse/expr/bad-block-end-label.txt2
-rw-r--r--test/parse/expr/bad-block-mismatch-label.txt2
-rw-r--r--test/parse/expr/bad-br-bad-depth.txt2
-rw-r--r--test/parse/expr/bad-br-defined-later.txt2
-rw-r--r--test/parse/expr/bad-br-name-undefined.txt2
-rw-r--r--test/parse/expr/bad-br-name.txt4
-rw-r--r--test/parse/expr/bad-br-no-depth.txt2
-rw-r--r--test/parse/expr/bad-br-undefined.txt2
-rw-r--r--test/parse/expr/bad-brtable-bad-depth.txt2
-rw-r--r--test/parse/expr/bad-compare-one-expr.txt4
-rw-r--r--test/parse/expr/bad-const-f32-trailing.txt4
-rw-r--r--test/parse/expr/bad-const-i32-garbage.txt4
-rw-r--r--test/parse/expr/bad-const-i32-just-negative-sign.txt4
-rw-r--r--test/parse/expr/bad-const-i32-overflow.txt2
-rw-r--r--test/parse/expr/bad-const-i32-trailing.txt4
-rw-r--r--test/parse/expr/bad-const-i32-underflow.txt2
-rw-r--r--test/parse/expr/bad-const-i64-overflow.txt2
-rw-r--r--test/parse/expr/bad-convert-float-sign.txt2
-rw-r--r--test/parse/expr/bad-convert-int-no-sign.txt4
-rw-r--r--test/parse/expr/bad-getglobal-name-undefined.txt2
-rw-r--r--test/parse/expr/bad-getglobal-undefined.txt2
-rw-r--r--test/parse/expr/bad-getlocal-name-undefined.txt2
-rw-r--r--test/parse/expr/bad-getlocal-name.txt4
-rw-r--r--test/parse/expr/bad-getlocal-undefined.txt2
-rw-r--r--test/parse/expr/bad-if-end-label.txt4
-rw-r--r--test/parse/expr/bad-if-mismatch-label.txt4
-rw-r--r--test/parse/expr/bad-if-no-then.txt2
-rw-r--r--test/parse/expr/bad-load-align-misspelled.txt2
-rw-r--r--test/parse/expr/bad-load-align-negative.txt2
-rw-r--r--test/parse/expr/bad-load-align-not-pot.txt2
-rw-r--r--test/parse/expr/bad-load-align.txt2
-rw-r--r--test/parse/expr/bad-load-float-sign.txt2
-rw-r--r--test/parse/expr/bad-load-offset-negative.txt2
-rw-r--r--test/parse/expr/bad-load-type.txt2
-rw-r--r--test/parse/expr/bad-loop-end-label.txt2
-rw-r--r--test/parse/expr/bad-loop-mismatch-label.txt2
-rw-r--r--test/parse/expr/bad-nop.txt2
-rw-r--r--test/parse/expr/bad-return-multi.txt2
-rw-r--r--test/parse/expr/bad-setglobal-name-undefined.txt2
-rw-r--r--test/parse/expr/bad-setglobal-undefined.txt2
-rw-r--r--test/parse/expr/bad-setlocal-name-undefined.txt2
-rw-r--r--test/parse/expr/bad-setlocal-name.txt4
-rw-r--r--test/parse/expr/bad-setlocal-no-value.txt2
-rw-r--r--test/parse/expr/bad-setlocal-undefined.txt2
-rw-r--r--test/parse/expr/bad-store-align-not-pot.txt2
-rw-r--r--test/parse/expr/bad-store-align.txt2
-rw-r--r--test/parse/expr/bad-store-float.sign.txt2
-rw-r--r--test/parse/expr/bad-store-offset-negative.txt2
-rw-r--r--test/parse/expr/bad-store-type.txt2
-rw-r--r--test/parse/expr/bad-unexpected.txt2
-rw-r--r--test/parse/expr/callimport-defined-later.txt2
52 files changed, 64 insertions, 64 deletions
diff --git a/test/parse/expr/bad-binary-one-expr.txt b/test/parse/expr/bad-binary-one-expr.txt
index 3422ea32..fdf815f6 100644
--- a/test/parse/expr/bad-binary-one-expr.txt
+++ b/test/parse/expr/bad-binary-one-expr.txt
@@ -3,10 +3,10 @@
i32.const 0
i32.add))
(;; STDERR ;;;
-parse/expr/bad-binary-one-expr.txt:4:4: type stack size too small at i32.add. got 1, expected at least 2
+out/test/parse/expr/bad-binary-one-expr.txt:4:4: type stack size too small at i32.add. got 1, expected at least 2
i32.add))
^^^^^^^
-parse/expr/bad-binary-one-expr.txt:2:9: type stack at end of function is 2. expected 0
+out/test/parse/expr/bad-binary-one-expr.txt:2:9: type stack at end of function is 2. expected 0
(module (func
^^^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-block-end-label.txt b/test/parse/expr/bad-block-end-label.txt
index 75460cb3..9e927e0a 100644
--- a/test/parse/expr/bad-block-end-label.txt
+++ b/test/parse/expr/bad-block-end-label.txt
@@ -4,7 +4,7 @@
block
end $foo))
(;; STDERR ;;;
-parse/expr/bad-block-end-label.txt:5:9: unexpected label "$foo"
+out/test/parse/expr/bad-block-end-label.txt:5:9: unexpected label "$foo"
end $foo))
^^^^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-block-mismatch-label.txt b/test/parse/expr/bad-block-mismatch-label.txt
index 74d59e5e..c2c9fed1 100644
--- a/test/parse/expr/bad-block-mismatch-label.txt
+++ b/test/parse/expr/bad-block-mismatch-label.txt
@@ -4,7 +4,7 @@
block $foo
end $bar))
(;; STDERR ;;;
-parse/expr/bad-block-mismatch-label.txt:5:9: mismatching label "$foo" != "$bar"
+out/test/parse/expr/bad-block-mismatch-label.txt:5:9: mismatching label "$foo" != "$bar"
end $bar))
^^^^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-br-bad-depth.txt b/test/parse/expr/bad-br-bad-depth.txt
index 15e16c91..e6d4ab4c 100644
--- a/test/parse/expr/bad-br-bad-depth.txt
+++ b/test/parse/expr/bad-br-bad-depth.txt
@@ -7,7 +7,7 @@
end
end))
(;; STDERR ;;;
-parse/expr/bad-br-bad-depth.txt:6:12: label variable out of range (max 3)
+out/test/parse/expr/bad-br-bad-depth.txt:6:12: label variable out of range (max 3)
br 3
^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-br-defined-later.txt b/test/parse/expr/bad-br-defined-later.txt
index d2e0823d..eaceaedc 100644
--- a/test/parse/expr/bad-br-defined-later.txt
+++ b/test/parse/expr/bad-br-defined-later.txt
@@ -6,7 +6,7 @@
nop
end))
(;; STDERR ;;;
-parse/expr/bad-br-defined-later.txt:4:8: label variable out of range (max 1)
+out/test/parse/expr/bad-br-defined-later.txt:4:8: label variable out of range (max 1)
br 1
^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-br-name-undefined.txt b/test/parse/expr/bad-br-name-undefined.txt
index 8b414d43..96c432b8 100644
--- a/test/parse/expr/bad-br-name-undefined.txt
+++ b/test/parse/expr/bad-br-name-undefined.txt
@@ -1,7 +1,7 @@
;;; ERROR: 1
(module (func br $n))
(;; STDERR ;;;
-parse/expr/bad-br-name-undefined.txt:2:18: undefined label variable "$n"
+out/test/parse/expr/bad-br-name-undefined.txt:2:18: undefined label variable "$n"
(module (func br $n))
^^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-br-name.txt b/test/parse/expr/bad-br-name.txt
index da38f58b..f7a9e62b 100644
--- a/test/parse/expr/bad-br-name.txt
+++ b/test/parse/expr/bad-br-name.txt
@@ -4,10 +4,10 @@
br foo
end))
(;; STDERR ;;;
-parse/expr/bad-br-name.txt:4:16: unexpected token "foo"
+out/test/parse/expr/bad-br-name.txt:4:16: unexpected token "foo"
br foo
^^^
-parse/expr/bad-br-name.txt:5:11: syntax error, unexpected END, expecting NAT or VAR
+out/test/parse/expr/bad-br-name.txt:5:11: syntax error, unexpected END, expecting NAT or VAR
end))
^^^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-br-no-depth.txt b/test/parse/expr/bad-br-no-depth.txt
index 34f948d2..c70ef114 100644
--- a/test/parse/expr/bad-br-no-depth.txt
+++ b/test/parse/expr/bad-br-no-depth.txt
@@ -5,7 +5,7 @@
br
end))
(;; STDERR ;;;
-parse/expr/bad-br-no-depth.txt:6:5: syntax error, unexpected END, expecting NAT or VAR
+out/test/parse/expr/bad-br-no-depth.txt:6:5: syntax error, unexpected END, expecting NAT or VAR
end))
^^^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-br-undefined.txt b/test/parse/expr/bad-br-undefined.txt
index 10172f0e..80acf302 100644
--- a/test/parse/expr/bad-br-undefined.txt
+++ b/test/parse/expr/bad-br-undefined.txt
@@ -1,7 +1,7 @@
;;; ERROR: 1
(module (func br 1))
(;; STDERR ;;;
-parse/expr/bad-br-undefined.txt:2:18: label variable out of range (max 1)
+out/test/parse/expr/bad-br-undefined.txt:2:18: label variable out of range (max 1)
(module (func br 1))
^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-brtable-bad-depth.txt b/test/parse/expr/bad-brtable-bad-depth.txt
index e859b124..9360224e 100644
--- a/test/parse/expr/bad-brtable-bad-depth.txt
+++ b/test/parse/expr/bad-brtable-bad-depth.txt
@@ -6,7 +6,7 @@
br_table 2
end))
(;; STDERR ;;;
-parse/expr/bad-brtable-bad-depth.txt:6:16: label variable out of range (max 2)
+out/test/parse/expr/bad-brtable-bad-depth.txt:6:16: label variable out of range (max 2)
br_table 2
^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-compare-one-expr.txt b/test/parse/expr/bad-compare-one-expr.txt
index 8964247a..dc7aa5e5 100644
--- a/test/parse/expr/bad-compare-one-expr.txt
+++ b/test/parse/expr/bad-compare-one-expr.txt
@@ -3,10 +3,10 @@
i32.const 0
i32.lt_s))
(;; STDERR ;;;
-parse/expr/bad-compare-one-expr.txt:4:11: type stack size too small at i32.lt_s. got 1, expected at least 2
+out/test/parse/expr/bad-compare-one-expr.txt:4:11: type stack size too small at i32.lt_s. got 1, expected at least 2
i32.lt_s))
^^^^^^^^
-parse/expr/bad-compare-one-expr.txt:2:9: type stack at end of function is 2. expected 0
+out/test/parse/expr/bad-compare-one-expr.txt:2:9: type stack at end of function is 2. expected 0
(module (func
^^^^^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-const-f32-trailing.txt b/test/parse/expr/bad-const-f32-trailing.txt
index d048a4b9..abd51a9c 100644
--- a/test/parse/expr/bad-const-f32-trailing.txt
+++ b/test/parse/expr/bad-const-f32-trailing.txt
@@ -1,10 +1,10 @@
;;; ERROR: 1
(module (func f32.const 1234.5678foo))
(;; STDERR ;;;
-parse/expr/bad-const-f32-trailing.txt:2:25: unexpected token "1234.5678foo"
+out/test/parse/expr/bad-const-f32-trailing.txt:2:25: unexpected token "1234.5678foo"
(module (func f32.const 1234.5678foo))
^^^^^^^^^^^^
-parse/expr/bad-const-f32-trailing.txt:2:37: syntax error, unexpected ), expecting NAT or INT or FLOAT
+out/test/parse/expr/bad-const-f32-trailing.txt:2:37: syntax error, unexpected ), expecting NAT or INT or FLOAT
(module (func f32.const 1234.5678foo))
^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-const-i32-garbage.txt b/test/parse/expr/bad-const-i32-garbage.txt
index 8fb0b7ad..9081dddd 100644
--- a/test/parse/expr/bad-const-i32-garbage.txt
+++ b/test/parse/expr/bad-const-i32-garbage.txt
@@ -1,10 +1,10 @@
;;; ERROR: 1
(module (func i32.const one-hundred))
(;; STDERR ;;;
-parse/expr/bad-const-i32-garbage.txt:2:25: unexpected token "one-hundred"
+out/test/parse/expr/bad-const-i32-garbage.txt:2:25: unexpected token "one-hundred"
(module (func i32.const one-hundred))
^^^^^^^^^^^
-parse/expr/bad-const-i32-garbage.txt:2:36: syntax error, unexpected ), expecting NAT or INT or FLOAT
+out/test/parse/expr/bad-const-i32-garbage.txt:2:36: syntax error, unexpected ), expecting NAT or INT or FLOAT
(module (func i32.const one-hundred))
^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-const-i32-just-negative-sign.txt b/test/parse/expr/bad-const-i32-just-negative-sign.txt
index e2574616..3a3667cc 100644
--- a/test/parse/expr/bad-const-i32-just-negative-sign.txt
+++ b/test/parse/expr/bad-const-i32-just-negative-sign.txt
@@ -2,10 +2,10 @@
(module
(func i32.const -))
(;; STDERR ;;;
-parse/expr/bad-const-i32-just-negative-sign.txt:3:19: unexpected token "-"
+out/test/parse/expr/bad-const-i32-just-negative-sign.txt:3:19: unexpected token "-"
(func i32.const -))
^
-parse/expr/bad-const-i32-just-negative-sign.txt:3:20: syntax error, unexpected ), expecting NAT or INT or FLOAT
+out/test/parse/expr/bad-const-i32-just-negative-sign.txt:3:20: syntax error, unexpected ), expecting NAT or INT or FLOAT
(func i32.const -))
^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-const-i32-overflow.txt b/test/parse/expr/bad-const-i32-overflow.txt
index 21bc996b..7ab37814 100644
--- a/test/parse/expr/bad-const-i32-overflow.txt
+++ b/test/parse/expr/bad-const-i32-overflow.txt
@@ -1,7 +1,7 @@
;;; ERROR: 1
(module (func i32.const 4294967296))
(;; STDERR ;;;
-parse/expr/bad-const-i32-overflow.txt:2:25: invalid literal "4294967296"
+out/test/parse/expr/bad-const-i32-overflow.txt:2:25: invalid literal "4294967296"
(module (func i32.const 4294967296))
^^^^^^^^^^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-const-i32-trailing.txt b/test/parse/expr/bad-const-i32-trailing.txt
index ae405ba6..a0a25c16 100644
--- a/test/parse/expr/bad-const-i32-trailing.txt
+++ b/test/parse/expr/bad-const-i32-trailing.txt
@@ -1,10 +1,10 @@
;;; ERROR: 1
(module (func i32.const 100x))
(;; STDERR ;;;
-parse/expr/bad-const-i32-trailing.txt:2:25: unexpected token "100x"
+out/test/parse/expr/bad-const-i32-trailing.txt:2:25: unexpected token "100x"
(module (func i32.const 100x))
^^^^
-parse/expr/bad-const-i32-trailing.txt:2:29: syntax error, unexpected ), expecting NAT or INT or FLOAT
+out/test/parse/expr/bad-const-i32-trailing.txt:2:29: syntax error, unexpected ), expecting NAT or INT or FLOAT
(module (func i32.const 100x))
^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-const-i32-underflow.txt b/test/parse/expr/bad-const-i32-underflow.txt
index 43157b4f..e9927ece 100644
--- a/test/parse/expr/bad-const-i32-underflow.txt
+++ b/test/parse/expr/bad-const-i32-underflow.txt
@@ -1,7 +1,7 @@
;;; ERROR: 1
(module (func i32.const -2147483649))
(;; STDERR ;;;
-parse/expr/bad-const-i32-underflow.txt:2:25: invalid literal "-2147483649"
+out/test/parse/expr/bad-const-i32-underflow.txt:2:25: invalid literal "-2147483649"
(module (func i32.const -2147483649))
^^^^^^^^^^^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-const-i64-overflow.txt b/test/parse/expr/bad-const-i64-overflow.txt
index 89551994..cda4c486 100644
--- a/test/parse/expr/bad-const-i64-overflow.txt
+++ b/test/parse/expr/bad-const-i64-overflow.txt
@@ -1,7 +1,7 @@
;;; ERROR: 1
(module (func i64.const 18446744073709551616))
(;; STDERR ;;;
-parse/expr/bad-const-i64-overflow.txt:2:25: invalid literal "18446744073709551616"
+out/test/parse/expr/bad-const-i64-overflow.txt:2:25: invalid literal "18446744073709551616"
(module (func i64.const 18446744073709551616))
^^^^^^^^^^^^^^^^^^^^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-convert-float-sign.txt b/test/parse/expr/bad-convert-float-sign.txt
index a02578a2..59989278 100644
--- a/test/parse/expr/bad-convert-float-sign.txt
+++ b/test/parse/expr/bad-convert-float-sign.txt
@@ -3,7 +3,7 @@
f32.const 0
f32.converts.f64))
(;; STDERR ;;;
-parse/expr/bad-convert-float-sign.txt:4:11: unexpected token "f32.converts.f64"
+out/test/parse/expr/bad-convert-float-sign.txt:4:11: unexpected token "f32.converts.f64"
f32.converts.f64))
^^^^^^^^^^^^^^^^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-convert-int-no-sign.txt b/test/parse/expr/bad-convert-int-no-sign.txt
index 0a82463a..98238294 100644
--- a/test/parse/expr/bad-convert-int-no-sign.txt
+++ b/test/parse/expr/bad-convert-int-no-sign.txt
@@ -3,10 +3,10 @@
i32.const
i32.convert.i32))
(;; STDERR ;;;
-parse/expr/bad-convert-int-no-sign.txt:4:11: unexpected token "i32.convert.i32"
+out/test/parse/expr/bad-convert-int-no-sign.txt:4:11: unexpected token "i32.convert.i32"
i32.convert.i32))
^^^^^^^^^^^^^^^
-parse/expr/bad-convert-int-no-sign.txt:4:26: syntax error, unexpected ), expecting NAT or INT or FLOAT
+out/test/parse/expr/bad-convert-int-no-sign.txt:4:26: syntax error, unexpected ), expecting NAT or INT or FLOAT
i32.convert.i32))
^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-getglobal-name-undefined.txt b/test/parse/expr/bad-getglobal-name-undefined.txt
index 5ead3821..93235d15 100644
--- a/test/parse/expr/bad-getglobal-name-undefined.txt
+++ b/test/parse/expr/bad-getglobal-name-undefined.txt
@@ -1,7 +1,7 @@
;;; ERROR: 1
(module (func get_global 0))
(;; STDERR ;;;
-parse/expr/bad-getglobal-name-undefined.txt:2:26: global variable out of range (max 0)
+out/test/parse/expr/bad-getglobal-name-undefined.txt:2:26: global variable out of range (max 0)
(module (func get_global 0))
^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-getglobal-undefined.txt b/test/parse/expr/bad-getglobal-undefined.txt
index c2ba9d6f..7f108b19 100644
--- a/test/parse/expr/bad-getglobal-undefined.txt
+++ b/test/parse/expr/bad-getglobal-undefined.txt
@@ -1,7 +1,7 @@
;;; ERROR: 1
(module (func get_global 0))
(;; STDERR ;;;
-parse/expr/bad-getglobal-undefined.txt:2:26: global variable out of range (max 0)
+out/test/parse/expr/bad-getglobal-undefined.txt:2:26: global variable out of range (max 0)
(module (func get_global 0))
^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-getlocal-name-undefined.txt b/test/parse/expr/bad-getlocal-name-undefined.txt
index 51181743..10cef6f1 100644
--- a/test/parse/expr/bad-getlocal-name-undefined.txt
+++ b/test/parse/expr/bad-getlocal-name-undefined.txt
@@ -1,7 +1,7 @@
;;; ERROR: 1
(module (func get_local $n))
(;; STDERR ;;;
-parse/expr/bad-getlocal-name-undefined.txt:2:25: undefined local variable "$n"
+out/test/parse/expr/bad-getlocal-name-undefined.txt:2:25: undefined local variable "$n"
(module (func get_local $n))
^^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-getlocal-name.txt b/test/parse/expr/bad-getlocal-name.txt
index ca79fc59..4505f2a2 100644
--- a/test/parse/expr/bad-getlocal-name.txt
+++ b/test/parse/expr/bad-getlocal-name.txt
@@ -1,10 +1,10 @@
;;; ERROR: 1
(module (func (local $f f32) get_local f))
(;; STDERR ;;;
-parse/expr/bad-getlocal-name.txt:2:40: unexpected token "f"
+out/test/parse/expr/bad-getlocal-name.txt:2:40: unexpected token "f"
(module (func (local $f f32) get_local f))
^
-parse/expr/bad-getlocal-name.txt:2:41: syntax error, unexpected ), expecting NAT or VAR
+out/test/parse/expr/bad-getlocal-name.txt:2:41: syntax error, unexpected ), expecting NAT or VAR
(module (func (local $f f32) get_local f))
^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-getlocal-undefined.txt b/test/parse/expr/bad-getlocal-undefined.txt
index 9bf955e9..f647c2c7 100644
--- a/test/parse/expr/bad-getlocal-undefined.txt
+++ b/test/parse/expr/bad-getlocal-undefined.txt
@@ -1,7 +1,7 @@
;;; ERROR: 1
(module (func (get_local 0)))
(;; STDERR ;;;
-parse/expr/bad-getlocal-undefined.txt:2:26: local variable out of range (max 0)
+out/test/parse/expr/bad-getlocal-undefined.txt:2:26: local variable out of range (max 0)
(module (func (get_local 0)))
^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-if-end-label.txt b/test/parse/expr/bad-if-end-label.txt
index e5fa8fd6..bc0d565a 100644
--- a/test/parse/expr/bad-if-end-label.txt
+++ b/test/parse/expr/bad-if-end-label.txt
@@ -6,10 +6,10 @@
else $foo
end $bar))
(;; STDERR ;;;
-parse/expr/bad-if-end-label.txt:6:10: unexpected label "$foo"
+out/test/parse/expr/bad-if-end-label.txt:6:10: unexpected label "$foo"
else $foo
^^^^
-parse/expr/bad-if-end-label.txt:7:9: unexpected label "$bar"
+out/test/parse/expr/bad-if-end-label.txt:7:9: unexpected label "$bar"
end $bar))
^^^^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-if-mismatch-label.txt b/test/parse/expr/bad-if-mismatch-label.txt
index abf6817e..d9cec272 100644
--- a/test/parse/expr/bad-if-mismatch-label.txt
+++ b/test/parse/expr/bad-if-mismatch-label.txt
@@ -6,10 +6,10 @@
else $bar
end $baz))
(;; STDERR ;;;
-parse/expr/bad-if-mismatch-label.txt:6:10: mismatching label "$foo" != "$bar"
+out/test/parse/expr/bad-if-mismatch-label.txt:6:10: mismatching label "$foo" != "$bar"
else $bar
^^^^
-parse/expr/bad-if-mismatch-label.txt:7:9: mismatching label "$foo" != "$baz"
+out/test/parse/expr/bad-if-mismatch-label.txt:7:9: mismatching label "$foo" != "$baz"
end $baz))
^^^^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-if-no-then.txt b/test/parse/expr/bad-if-no-then.txt
index 45a22892..23f28352 100644
--- a/test/parse/expr/bad-if-no-then.txt
+++ b/test/parse/expr/bad-if-no-then.txt
@@ -1,7 +1,7 @@
;;; ERROR: 1
(module (func (if (i32.const 0))))
(;; STDERR ;;;
-parse/expr/bad-if-no-then.txt:2:32: syntax error, unexpected ), expecting (
+out/test/parse/expr/bad-if-no-then.txt:2:32: syntax error, unexpected ), expecting (
(module (func (if (i32.const 0))))
^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-load-align-misspelled.txt b/test/parse/expr/bad-load-align-misspelled.txt
index 57e7332f..c23247af 100644
--- a/test/parse/expr/bad-load-align-misspelled.txt
+++ b/test/parse/expr/bad-load-align-misspelled.txt
@@ -4,7 +4,7 @@
i32.const 0
i32.load aline=64))
(;; STDERR ;;;
-parse/expr/bad-load-align-misspelled.txt:5:14: unexpected token "aline=64"
+out/test/parse/expr/bad-load-align-misspelled.txt:5:14: unexpected token "aline=64"
i32.load aline=64))
^^^^^^^^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-load-align-negative.txt b/test/parse/expr/bad-load-align-negative.txt
index c02df3cf..8daef20b 100644
--- a/test/parse/expr/bad-load-align-negative.txt
+++ b/test/parse/expr/bad-load-align-negative.txt
@@ -3,7 +3,7 @@
i32.const 0
i32.load8_s align=-1))
(;; STDERR ;;;
-parse/expr/bad-load-align-negative.txt:4:23: unexpected token "align=-1"
+out/test/parse/expr/bad-load-align-negative.txt:4:23: unexpected token "align=-1"
i32.load8_s align=-1))
^^^^^^^^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-load-align-not-pot.txt b/test/parse/expr/bad-load-align-not-pot.txt
index 240005ff..b90bba67 100644
--- a/test/parse/expr/bad-load-align-not-pot.txt
+++ b/test/parse/expr/bad-load-align-not-pot.txt
@@ -6,7 +6,7 @@
i32.load align=3
drop))
(;; STDERR ;;;
-parse/expr/bad-load-align-not-pot.txt:6:5: alignment must be power-of-two
+out/test/parse/expr/bad-load-align-not-pot.txt:6:5: alignment must be power-of-two
i32.load align=3
^^^^^^^^^^^^^^^^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-load-align.txt b/test/parse/expr/bad-load-align.txt
index 1108bca9..a7806bb7 100644
--- a/test/parse/expr/bad-load-align.txt
+++ b/test/parse/expr/bad-load-align.txt
@@ -1,7 +1,7 @@
;;; ERROR: 1
(module (func (i32.load align=foo (i32.const 0))))
(;; STDERR ;;;
-parse/expr/bad-load-align.txt:2:25: unexpected token "align=foo"
+out/test/parse/expr/bad-load-align.txt:2:25: unexpected token "align=foo"
(module (func (i32.load align=foo (i32.const 0))))
^^^^^^^^^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-load-float-sign.txt b/test/parse/expr/bad-load-float-sign.txt
index e81f83a2..260daf59 100644
--- a/test/parse/expr/bad-load-float-sign.txt
+++ b/test/parse/expr/bad-load-float-sign.txt
@@ -3,7 +3,7 @@
i32.const 0
f32.loads))
(;; STDERR ;;;
-parse/expr/bad-load-float-sign.txt:4:11: unexpected token "f32.loads"
+out/test/parse/expr/bad-load-float-sign.txt:4:11: unexpected token "f32.loads"
f32.loads))
^^^^^^^^^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-load-offset-negative.txt b/test/parse/expr/bad-load-offset-negative.txt
index 5840c93c..9cf95709 100644
--- a/test/parse/expr/bad-load-offset-negative.txt
+++ b/test/parse/expr/bad-load-offset-negative.txt
@@ -3,7 +3,7 @@
i32.const 0
i32.load8_s offset=-1))
(;; STDERR ;;;
-parse/expr/bad-load-offset-negative.txt:4:23: unexpected token "offset=-1"
+out/test/parse/expr/bad-load-offset-negative.txt:4:23: unexpected token "offset=-1"
i32.load8_s offset=-1))
^^^^^^^^^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-load-type.txt b/test/parse/expr/bad-load-type.txt
index 644546cf..25d8d0fc 100644
--- a/test/parse/expr/bad-load-type.txt
+++ b/test/parse/expr/bad-load-type.txt
@@ -3,7 +3,7 @@
i32.const 0
load.x32))
(;; STDERR ;;;
-parse/expr/bad-load-type.txt:4:11: unexpected token "load.x32"
+out/test/parse/expr/bad-load-type.txt:4:11: unexpected token "load.x32"
load.x32))
^^^^^^^^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-loop-end-label.txt b/test/parse/expr/bad-loop-end-label.txt
index 6d77694e..5e33f3a9 100644
--- a/test/parse/expr/bad-loop-end-label.txt
+++ b/test/parse/expr/bad-loop-end-label.txt
@@ -4,7 +4,7 @@
loop
end $foo))
(;; STDERR ;;;
-parse/expr/bad-loop-end-label.txt:5:9: unexpected label "$foo"
+out/test/parse/expr/bad-loop-end-label.txt:5:9: unexpected label "$foo"
end $foo))
^^^^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-loop-mismatch-label.txt b/test/parse/expr/bad-loop-mismatch-label.txt
index cd4e7543..7dab3d63 100644
--- a/test/parse/expr/bad-loop-mismatch-label.txt
+++ b/test/parse/expr/bad-loop-mismatch-label.txt
@@ -4,7 +4,7 @@
loop $foo
end $bar))
(;; STDERR ;;;
-parse/expr/bad-loop-mismatch-label.txt:5:9: mismatching label "$foo" != "$bar"
+out/test/parse/expr/bad-loop-mismatch-label.txt:5:9: mismatching label "$foo" != "$bar"
end $bar))
^^^^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-nop.txt b/test/parse/expr/bad-nop.txt
index d1cbbc97..d70fa39b 100644
--- a/test/parse/expr/bad-nop.txt
+++ b/test/parse/expr/bad-nop.txt
@@ -3,7 +3,7 @@
nop
foo))
(;; STDERR ;;;
-parse/expr/bad-nop.txt:4:11: unexpected token "foo"
+out/test/parse/expr/bad-nop.txt:4:11: unexpected token "foo"
foo))
^^^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-return-multi.txt b/test/parse/expr/bad-return-multi.txt
index f6d525a3..796c2edc 100644
--- a/test/parse/expr/bad-return-multi.txt
+++ b/test/parse/expr/bad-return-multi.txt
@@ -4,7 +4,7 @@
f32.const 3.14
return))
(;; STDERR ;;;
-parse/expr/bad-return-multi.txt:2:9: multiple result values not currently supported.
+out/test/parse/expr/bad-return-multi.txt:2:9: multiple result values not currently supported.
(module (func (result f32 f32)
^^^^^^^^^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-setglobal-name-undefined.txt b/test/parse/expr/bad-setglobal-name-undefined.txt
index 3721e5a2..25caf9d5 100644
--- a/test/parse/expr/bad-setglobal-name-undefined.txt
+++ b/test/parse/expr/bad-setglobal-name-undefined.txt
@@ -3,7 +3,7 @@
i32.const 1
set_global $f))
(;; STDERR ;;;
-parse/expr/bad-setglobal-name-undefined.txt:4:22: undefined global variable "$f"
+out/test/parse/expr/bad-setglobal-name-undefined.txt:4:22: undefined global variable "$f"
set_global $f))
^^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-setglobal-undefined.txt b/test/parse/expr/bad-setglobal-undefined.txt
index f923b6f7..3a24cf3b 100644
--- a/test/parse/expr/bad-setglobal-undefined.txt
+++ b/test/parse/expr/bad-setglobal-undefined.txt
@@ -3,7 +3,7 @@
i32.const 1
set_global 0))
(;; STDERR ;;;
-parse/expr/bad-setglobal-undefined.txt:4:22: global variable out of range (max 0)
+out/test/parse/expr/bad-setglobal-undefined.txt:4:22: global variable out of range (max 0)
set_global 0))
^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-setlocal-name-undefined.txt b/test/parse/expr/bad-setlocal-name-undefined.txt
index a5b523ae..06d55b93 100644
--- a/test/parse/expr/bad-setlocal-name-undefined.txt
+++ b/test/parse/expr/bad-setlocal-name-undefined.txt
@@ -3,7 +3,7 @@
i32.const 0
set_local $n))
(;; STDERR ;;;
-parse/expr/bad-setlocal-name-undefined.txt:4:21: undefined local variable "$n"
+out/test/parse/expr/bad-setlocal-name-undefined.txt:4:21: undefined local variable "$n"
set_local $n))
^^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-setlocal-name.txt b/test/parse/expr/bad-setlocal-name.txt
index b93e450e..d7bf2875 100644
--- a/test/parse/expr/bad-setlocal-name.txt
+++ b/test/parse/expr/bad-setlocal-name.txt
@@ -4,10 +4,10 @@
i32.const 0
set_local n))
(;; STDERR ;;;
-parse/expr/bad-setlocal-name.txt:5:13: unexpected token "n"
+out/test/parse/expr/bad-setlocal-name.txt:5:13: unexpected token "n"
set_local n))
^
-parse/expr/bad-setlocal-name.txt:5:14: syntax error, unexpected ), expecting NAT or VAR
+out/test/parse/expr/bad-setlocal-name.txt:5:14: syntax error, unexpected ), expecting NAT or VAR
set_local n))
^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-setlocal-no-value.txt b/test/parse/expr/bad-setlocal-no-value.txt
index 5c27b229..a8e87d66 100644
--- a/test/parse/expr/bad-setlocal-no-value.txt
+++ b/test/parse/expr/bad-setlocal-no-value.txt
@@ -3,7 +3,7 @@
(local i32)
set_local 0))
(;; STDERR ;;;
-parse/expr/bad-setlocal-no-value.txt:4:3: type stack size too small at set_local. got 0, expected at least 1
+out/test/parse/expr/bad-setlocal-no-value.txt:4:3: type stack size too small at set_local. got 0, expected at least 1
set_local 0))
^^^^^^^^^^^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-setlocal-undefined.txt b/test/parse/expr/bad-setlocal-undefined.txt
index f050d683..0260cd30 100644
--- a/test/parse/expr/bad-setlocal-undefined.txt
+++ b/test/parse/expr/bad-setlocal-undefined.txt
@@ -3,7 +3,7 @@
i32.const 0
set_local 0))
(;; STDERR ;;;
-parse/expr/bad-setlocal-undefined.txt:4:21: local variable out of range (max 0)
+out/test/parse/expr/bad-setlocal-undefined.txt:4:21: local variable out of range (max 0)
set_local 0))
^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-store-align-not-pot.txt b/test/parse/expr/bad-store-align-not-pot.txt
index 060ce296..1af7662a 100644
--- a/test/parse/expr/bad-store-align-not-pot.txt
+++ b/test/parse/expr/bad-store-align-not-pot.txt
@@ -6,7 +6,7 @@
f32.const 0.0
f32.store align=3))
(;; STDERR ;;;
-parse/expr/bad-store-align-not-pot.txt:7:5: alignment must be power-of-two
+out/test/parse/expr/bad-store-align-not-pot.txt:7:5: alignment must be power-of-two
f32.store align=3))
^^^^^^^^^^^^^^^^^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-store-align.txt b/test/parse/expr/bad-store-align.txt
index 06eff9aa..e08fe4a8 100644
--- a/test/parse/expr/bad-store-align.txt
+++ b/test/parse/expr/bad-store-align.txt
@@ -4,7 +4,7 @@
i32.const 0
i32.store align=foo))
(;; STDERR ;;;
-parse/expr/bad-store-align.txt:5:21: unexpected token "align=foo"
+out/test/parse/expr/bad-store-align.txt:5:21: unexpected token "align=foo"
i32.store align=foo))
^^^^^^^^^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-store-float.sign.txt b/test/parse/expr/bad-store-float.sign.txt
index d041cd5d..5aa00d96 100644
--- a/test/parse/expr/bad-store-float.sign.txt
+++ b/test/parse/expr/bad-store-float.sign.txt
@@ -4,7 +4,7 @@
f32.const 0
f32.storeu))
(;; STDERR ;;;
-parse/expr/bad-store-float.sign.txt:5:11: unexpected token "f32.storeu"
+out/test/parse/expr/bad-store-float.sign.txt:5:11: unexpected token "f32.storeu"
f32.storeu))
^^^^^^^^^^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-store-offset-negative.txt b/test/parse/expr/bad-store-offset-negative.txt
index 15a33321..0bca36c4 100644
--- a/test/parse/expr/bad-store-offset-negative.txt
+++ b/test/parse/expr/bad-store-offset-negative.txt
@@ -4,7 +4,7 @@
i32.const 0
i32.store8 offset=-1))
(;; STDERR ;;;
-parse/expr/bad-store-offset-negative.txt:5:22: unexpected token "offset=-1"
+out/test/parse/expr/bad-store-offset-negative.txt:5:22: unexpected token "offset=-1"
i32.store8 offset=-1))
^^^^^^^^^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-store-type.txt b/test/parse/expr/bad-store-type.txt
index d095c607..f5128db4 100644
--- a/test/parse/expr/bad-store-type.txt
+++ b/test/parse/expr/bad-store-type.txt
@@ -4,7 +4,7 @@
f32.const 0
store.float32))
(;; STDERR ;;;
-parse/expr/bad-store-type.txt:5:11: unexpected token "store.float32"
+out/test/parse/expr/bad-store-type.txt:5:11: unexpected token "store.float32"
store.float32))
^^^^^^^^^^^^^
;;; STDERR ;;)
diff --git a/test/parse/expr/bad-unexpected.txt b/test/parse/expr/bad-unexpected.txt
index 2a740079..c7d3f238 100644
--- a/test/parse/expr/bad-unexpected.txt
+++ b/test/parse/expr/bad-unexpected.txt
@@ -1,7 +1,7 @@
;;; ERROR: 1
(module (func (module)))
(;; STDERR ;;;
-parse/expr/bad-unexpected.txt:2:16: syntax error, unexpected MODULE
+out/test/parse/expr/bad-unexpected.txt:2:16: syntax error, unexpected MODULE
(module (func (module)))
^^^^^^
;;; STDERR ;;)
diff --git a/test/parse/expr/callimport-defined-later.txt b/test/parse/expr/callimport-defined-later.txt
index 7472a1b2..30956c0d 100644
--- a/test/parse/expr/callimport-defined-later.txt
+++ b/test/parse/expr/callimport-defined-later.txt
@@ -5,7 +5,7 @@
call $baz)
(import "foo" "bar" (func $baz (param f32))))
(;; STDERR ;;;
-parse/expr/callimport-defined-later.txt:6:3: imports must occur before all non-import definitions
+out/test/parse/expr/callimport-defined-later.txt:6:3: imports must occur before all non-import definitions
(import "foo" "bar" (func $baz (param f32))))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
;;; STDERR ;;)