summaryrefslogtreecommitdiff
path: root/test/parse/module
diff options
context:
space:
mode:
Diffstat (limited to 'test/parse/module')
-rw-r--r--test/parse/module/bad-binary-module-magic.txt2
-rw-r--r--test/parse/module/bad-export-func-empty.txt2
-rw-r--r--test/parse/module/bad-export-func-name-undefined.txt2
-rw-r--r--test/parse/module/bad-export-func-name.txt4
-rw-r--r--test/parse/module/bad-export-func-no-string.txt2
-rw-r--r--test/parse/module/bad-export-func-too-many.txt2
-rw-r--r--test/parse/module/bad-export-func-undefined.txt2
-rw-r--r--test/parse/module/bad-export-global-name-undefined.txt2
-rw-r--r--test/parse/module/bad-export-global-undefined.txt2
-rw-r--r--test/parse/module/bad-export-memory-name-undefined.txt2
-rw-r--r--test/parse/module/bad-export-memory-undefined.txt2
-rw-r--r--test/parse/module/bad-export-table-name-undefined.txt2
-rw-r--r--test/parse/module/bad-export-table-undefined.txt2
-rw-r--r--test/parse/module/bad-func-redefinition.txt2
-rw-r--r--test/parse/module/bad-global-invalid-expr.txt2
-rw-r--r--test/parse/module/bad-global-invalid-getglobal.txt2
-rw-r--r--test/parse/module/bad-import-func-not-param.txt4
-rw-r--r--test/parse/module/bad-import-func-not-result.txt4
-rw-r--r--test/parse/module/bad-import-func-one-string.txt2
-rw-r--r--test/parse/module/bad-import-func-redefinition.txt2
-rw-r--r--test/parse/module/bad-import-global-redefinition.txt2
-rw-r--r--test/parse/module/bad-import-memory-redefinition.txt2
-rw-r--r--test/parse/module/bad-import-table-redefinition.txt2
-rw-r--r--test/parse/module/bad-memory-empty.txt2
-rw-r--r--test/parse/module/bad-memory-init-size-negative.txt2
-rw-r--r--test/parse/module/bad-memory-init-size-too-big.txt2
-rw-r--r--test/parse/module/bad-memory-init-size.txt4
-rw-r--r--test/parse/module/bad-memory-max-less-than-init.txt2
-rw-r--r--test/parse/module/bad-memory-max-size-negative.txt2
-rw-r--r--test/parse/module/bad-memory-max-size-too-big.txt2
-rw-r--r--test/parse/module/bad-memory-max-size.txt2
-rw-r--r--test/parse/module/bad-memory-segment-address.txt4
-rw-r--r--test/parse/module/bad-memory-too-many.txt2
-rw-r--r--test/parse/module/bad-module-no-close.txt2
-rw-r--r--test/parse/module/bad-start-not-nullary.txt2
-rw-r--r--test/parse/module/bad-start-not-void.txt2
-rw-r--r--test/parse/module/bad-start-too-many.txt2
-rw-r--r--test/parse/module/bad-table-invalid-function.txt2
-rw-r--r--test/parse/module/bad-table-too-many.txt2
39 files changed, 44 insertions, 44 deletions
diff --git a/test/parse/module/bad-binary-module-magic.txt b/test/parse/module/bad-binary-module-magic.txt
index f936b3c3..460626c9 100644
--- a/test/parse/module/bad-binary-module-magic.txt
+++ b/test/parse/module/bad-binary-module-magic.txt
@@ -3,7 +3,7 @@
"\00ASM"
"\0b\00\00\00")
(;; STDERR ;;;
-parse/module/bad-binary-module-magic.txt:2:2: error in binary module: @0x00000004: bad magic value
+out/test/parse/module/bad-binary-module-magic.txt:2:2: error in binary module: @0x00000004: bad magic value
(module
^^^^^^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-export-func-empty.txt b/test/parse/module/bad-export-func-empty.txt
index 8cadf9f1..de531b22 100644
--- a/test/parse/module/bad-export-func-empty.txt
+++ b/test/parse/module/bad-export-func-empty.txt
@@ -1,7 +1,7 @@
;;; ERROR: 1
(module (export))
(;; STDERR ;;;
-parse/module/bad-export-func-empty.txt:2:16: syntax error, unexpected ), expecting TEXT
+out/test/parse/module/bad-export-func-empty.txt:2:16: syntax error, unexpected ), expecting TEXT
(module (export))
^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-export-func-name-undefined.txt b/test/parse/module/bad-export-func-name-undefined.txt
index 9456a920..36658f0a 100644
--- a/test/parse/module/bad-export-func-name-undefined.txt
+++ b/test/parse/module/bad-export-func-name-undefined.txt
@@ -1,7 +1,7 @@
;;; ERROR: 1
(module (export "foo" (func $foo)))
(;; STDERR ;;;
-parse/module/bad-export-func-name-undefined.txt:2:29: undefined function variable "$foo"
+out/test/parse/module/bad-export-func-name-undefined.txt:2:29: undefined function variable "$foo"
(module (export "foo" (func $foo)))
^^^^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-export-func-name.txt b/test/parse/module/bad-export-func-name.txt
index 554401e6..0d189e35 100644
--- a/test/parse/module/bad-export-func-name.txt
+++ b/test/parse/module/bad-export-func-name.txt
@@ -1,10 +1,10 @@
;;; ERROR: 1
(module (export "foo" (func foo)))
(;; STDERR ;;;
-parse/module/bad-export-func-name.txt:2:29: unexpected token "foo"
+out/test/parse/module/bad-export-func-name.txt:2:29: unexpected token "foo"
(module (export "foo" (func foo)))
^^^
-parse/module/bad-export-func-name.txt:2:32: syntax error, unexpected ), expecting NAT or VAR
+out/test/parse/module/bad-export-func-name.txt:2:32: syntax error, unexpected ), expecting NAT or VAR
(module (export "foo" (func foo)))
^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-export-func-no-string.txt b/test/parse/module/bad-export-func-no-string.txt
index fd7dac63..384950ab 100644
--- a/test/parse/module/bad-export-func-no-string.txt
+++ b/test/parse/module/bad-export-func-no-string.txt
@@ -1,7 +1,7 @@
;;; ERROR: 1
(module (func nop) (export nop nop))
(;; STDERR ;;;
-parse/module/bad-export-func-no-string.txt:2:28: syntax error, unexpected NOP, expecting TEXT
+out/test/parse/module/bad-export-func-no-string.txt:2:28: syntax error, unexpected NOP, expecting TEXT
(module (func nop) (export nop nop))
^^^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-export-func-too-many.txt b/test/parse/module/bad-export-func-too-many.txt
index 5e6f0bd6..e560cfdf 100644
--- a/test/parse/module/bad-export-func-too-many.txt
+++ b/test/parse/module/bad-export-func-too-many.txt
@@ -1,7 +1,7 @@
;;; ERROR: 1
(module (func nop) (export "nop" (func 0 foo)))
(;; STDERR ;;;
-parse/module/bad-export-func-too-many.txt:2:42: unexpected token "foo"
+out/test/parse/module/bad-export-func-too-many.txt:2:42: unexpected token "foo"
(module (func nop) (export "nop" (func 0 foo)))
^^^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-export-func-undefined.txt b/test/parse/module/bad-export-func-undefined.txt
index 0f68d21f..048f4968 100644
--- a/test/parse/module/bad-export-func-undefined.txt
+++ b/test/parse/module/bad-export-func-undefined.txt
@@ -1,7 +1,7 @@
;;; ERROR: 1
(module (export "foo" (func 0)))
(;; STDERR ;;;
-parse/module/bad-export-func-undefined.txt:2:29: function variable out of range (max 0)
+out/test/parse/module/bad-export-func-undefined.txt:2:29: function variable out of range (max 0)
(module (export "foo" (func 0)))
^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-export-global-name-undefined.txt b/test/parse/module/bad-export-global-name-undefined.txt
index 61c5af9b..db502d85 100644
--- a/test/parse/module/bad-export-global-name-undefined.txt
+++ b/test/parse/module/bad-export-global-name-undefined.txt
@@ -1,7 +1,7 @@
;;; ERROR: 1
(module (export "foo" (global $bar)))
(;; STDERR ;;;
-parse/module/bad-export-global-name-undefined.txt:2:31: undefined global variable "$bar"
+out/test/parse/module/bad-export-global-name-undefined.txt:2:31: undefined global variable "$bar"
(module (export "foo" (global $bar)))
^^^^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-export-global-undefined.txt b/test/parse/module/bad-export-global-undefined.txt
index f2b5ad7c..06087257 100644
--- a/test/parse/module/bad-export-global-undefined.txt
+++ b/test/parse/module/bad-export-global-undefined.txt
@@ -1,7 +1,7 @@
;;; ERROR: 1
(module (export "foo" (global 0)))
(;; STDERR ;;;
-parse/module/bad-export-global-undefined.txt:2:31: global variable out of range (max 0)
+out/test/parse/module/bad-export-global-undefined.txt:2:31: global variable out of range (max 0)
(module (export "foo" (global 0)))
^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-export-memory-name-undefined.txt b/test/parse/module/bad-export-memory-name-undefined.txt
index feb4158c..5b96bf1e 100644
--- a/test/parse/module/bad-export-memory-name-undefined.txt
+++ b/test/parse/module/bad-export-memory-name-undefined.txt
@@ -1,7 +1,7 @@
;;; ERROR: 1
(module (export "foo" (memory $bar)))
(;; STDERR ;;;
-parse/module/bad-export-memory-name-undefined.txt:2:31: undefined memory variable "$bar"
+out/test/parse/module/bad-export-memory-name-undefined.txt:2:31: undefined memory variable "$bar"
(module (export "foo" (memory $bar)))
^^^^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-export-memory-undefined.txt b/test/parse/module/bad-export-memory-undefined.txt
index d56971c1..69c23c2d 100644
--- a/test/parse/module/bad-export-memory-undefined.txt
+++ b/test/parse/module/bad-export-memory-undefined.txt
@@ -2,7 +2,7 @@
(module
(export "mem" (memory 0)))
(;; STDERR ;;;
-parse/module/bad-export-memory-undefined.txt:3:25: memory variable out of range (max 0)
+out/test/parse/module/bad-export-memory-undefined.txt:3:25: memory variable out of range (max 0)
(export "mem" (memory 0)))
^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-export-table-name-undefined.txt b/test/parse/module/bad-export-table-name-undefined.txt
index ee8717aa..b8c7fd64 100644
--- a/test/parse/module/bad-export-table-name-undefined.txt
+++ b/test/parse/module/bad-export-table-name-undefined.txt
@@ -1,7 +1,7 @@
;;; ERROR: 1
(module (export "foo" (table $bar)))
(;; STDERR ;;;
-parse/module/bad-export-table-name-undefined.txt:2:30: undefined table variable "$bar"
+out/test/parse/module/bad-export-table-name-undefined.txt:2:30: undefined table variable "$bar"
(module (export "foo" (table $bar)))
^^^^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-export-table-undefined.txt b/test/parse/module/bad-export-table-undefined.txt
index 86ec83bb..15e909fe 100644
--- a/test/parse/module/bad-export-table-undefined.txt
+++ b/test/parse/module/bad-export-table-undefined.txt
@@ -1,7 +1,7 @@
;;; ERROR: 1
(module (export "foo" (table 0)))
(;; STDERR ;;;
-parse/module/bad-export-table-undefined.txt:2:30: table variable out of range (max 0)
+out/test/parse/module/bad-export-table-undefined.txt:2:30: table variable out of range (max 0)
(module (export "foo" (table 0)))
^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-func-redefinition.txt b/test/parse/module/bad-func-redefinition.txt
index a9032199..d043929f 100644
--- a/test/parse/module/bad-func-redefinition.txt
+++ b/test/parse/module/bad-func-redefinition.txt
@@ -3,7 +3,7 @@
(func $n nop)
(func $n nop))
(;; STDERR ;;;
-parse/module/bad-func-redefinition.txt:4:3: redefinition of function "$n"
+out/test/parse/module/bad-func-redefinition.txt:4:3: redefinition of function "$n"
(func $n nop))
^^^^^^^^^^^^^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-global-invalid-expr.txt b/test/parse/module/bad-global-invalid-expr.txt
index e8da98c5..b863add4 100644
--- a/test/parse/module/bad-global-invalid-expr.txt
+++ b/test/parse/module/bad-global-invalid-expr.txt
@@ -5,7 +5,7 @@
i32.const 2
i32.add))
(;; STDERR ;;;
-parse/module/bad-global-invalid-expr.txt:3:3: invalid global initializer expression, must be a constant expression; either *.const or get_global.
+out/test/parse/module/bad-global-invalid-expr.txt:3:3: invalid global initializer expression, must be a constant expression; either *.const or get_global.
(global i32
^^^^^^^^^^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-global-invalid-getglobal.txt b/test/parse/module/bad-global-invalid-getglobal.txt
index b2ba7ec1..e650bd1c 100644
--- a/test/parse/module/bad-global-invalid-getglobal.txt
+++ b/test/parse/module/bad-global-invalid-getglobal.txt
@@ -2,7 +2,7 @@
(module
(global i32 (get_global 1)))
(;; STDERR ;;;
-parse/module/bad-global-invalid-getglobal.txt:3:27: global variable out of range (max 1)
+out/test/parse/module/bad-global-invalid-getglobal.txt:3:27: global variable out of range (max 1)
(global i32 (get_global 1)))
^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-import-func-not-param.txt b/test/parse/module/bad-import-func-not-param.txt
index 551cd8a1..f0c41412 100644
--- a/test/parse/module/bad-import-func-not-param.txt
+++ b/test/parse/module/bad-import-func-not-param.txt
@@ -1,10 +1,10 @@
;;; ERROR: 1
(module (import "foo" "bar" (func (parump i32))))
(;; STDERR ;;;
-parse/module/bad-import-func-not-param.txt:2:36: unexpected token "parump"
+out/test/parse/module/bad-import-func-not-param.txt:2:36: unexpected token "parump"
(module (import "foo" "bar" (func (parump i32))))
^^^^^^
-parse/module/bad-import-func-not-param.txt:2:43: syntax error, unexpected VALUE_TYPE, expecting TYPE or PARAM or RESULT
+out/test/parse/module/bad-import-func-not-param.txt:2:43: syntax error, unexpected VALUE_TYPE, expecting TYPE or PARAM or RESULT
(module (import "foo" "bar" (func (parump i32))))
^^^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-import-func-not-result.txt b/test/parse/module/bad-import-func-not-result.txt
index 6e6b9754..81dc1ce9 100644
--- a/test/parse/module/bad-import-func-not-result.txt
+++ b/test/parse/module/bad-import-func-not-result.txt
@@ -1,10 +1,10 @@
;;; ERROR: 1
(module (import "foo" "bar" (func (param i32) (resalt i32))))
(;; STDERR ;;;
-parse/module/bad-import-func-not-result.txt:2:48: unexpected token "resalt"
+out/test/parse/module/bad-import-func-not-result.txt:2:48: unexpected token "resalt"
(module (import "foo" "bar" (func (param i32) (resalt i32))))
^^^^^^
-parse/module/bad-import-func-not-result.txt:2:55: syntax error, unexpected VALUE_TYPE, expecting RESULT
+out/test/parse/module/bad-import-func-not-result.txt:2:55: syntax error, unexpected VALUE_TYPE, expecting RESULT
(module (import "foo" "bar" (func (param i32) (resalt i32))))
^^^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-import-func-one-string.txt b/test/parse/module/bad-import-func-one-string.txt
index a040a23a..61bae648 100644
--- a/test/parse/module/bad-import-func-one-string.txt
+++ b/test/parse/module/bad-import-func-one-string.txt
@@ -1,7 +1,7 @@
;;; ERROR: 1
(module (import "foo" (param i32)))
(;; STDERR ;;;
-parse/module/bad-import-func-one-string.txt:2:23: syntax error, unexpected (, expecting TEXT
+out/test/parse/module/bad-import-func-one-string.txt:2:23: syntax error, unexpected (, expecting TEXT
(module (import "foo" (param i32)))
^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-import-func-redefinition.txt b/test/parse/module/bad-import-func-redefinition.txt
index 62c038b3..fce8e9f2 100644
--- a/test/parse/module/bad-import-func-redefinition.txt
+++ b/test/parse/module/bad-import-func-redefinition.txt
@@ -3,7 +3,7 @@
(import "bar" "baz" (func $foo (param i32)))
(import "quux" "blorf" (func $foo (param f32))))
(;; STDERR ;;;
-parse/module/bad-import-func-redefinition.txt:4:3: redefinition of function "$foo"
+out/test/parse/module/bad-import-func-redefinition.txt:4:3: redefinition of function "$foo"
(import "quux" "blorf" (func $foo (param f32))))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-import-global-redefinition.txt b/test/parse/module/bad-import-global-redefinition.txt
index 6877f70a..1c269314 100644
--- a/test/parse/module/bad-import-global-redefinition.txt
+++ b/test/parse/module/bad-import-global-redefinition.txt
@@ -3,7 +3,7 @@
(import "foo" "bar" (global $baz i32))
(import "oof" "rab" (global $baz i32)))
(;; STDERR ;;;
-parse/module/bad-import-global-redefinition.txt:4:3: redefinition of global "$baz"
+out/test/parse/module/bad-import-global-redefinition.txt:4:3: redefinition of global "$baz"
(import "oof" "rab" (global $baz i32)))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-import-memory-redefinition.txt b/test/parse/module/bad-import-memory-redefinition.txt
index 1610382a..5377d445 100644
--- a/test/parse/module/bad-import-memory-redefinition.txt
+++ b/test/parse/module/bad-import-memory-redefinition.txt
@@ -3,7 +3,7 @@
(import "foo" "bar" (memory $baz 0))
(import "foo" "blah" (memory $baz 0)))
(;; STDERR ;;;
-parse/module/bad-import-memory-redefinition.txt:4:3: redefinition of memory "$baz"
+out/test/parse/module/bad-import-memory-redefinition.txt:4:3: redefinition of memory "$baz"
(import "foo" "blah" (memory $baz 0)))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-import-table-redefinition.txt b/test/parse/module/bad-import-table-redefinition.txt
index 1ca01851..1873ef78 100644
--- a/test/parse/module/bad-import-table-redefinition.txt
+++ b/test/parse/module/bad-import-table-redefinition.txt
@@ -3,7 +3,7 @@
(import "foo" "bar" (table $baz 0 anyfunc))
(import "foo" "blah" (table $baz 0 anyfunc)))
(;; STDERR ;;;
-parse/module/bad-import-table-redefinition.txt:4:3: redefinition of table "$baz"
+out/test/parse/module/bad-import-table-redefinition.txt:4:3: redefinition of table "$baz"
(import "foo" "blah" (table $baz 0 anyfunc)))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-memory-empty.txt b/test/parse/module/bad-memory-empty.txt
index 869bb9a5..701a7645 100644
--- a/test/parse/module/bad-memory-empty.txt
+++ b/test/parse/module/bad-memory-empty.txt
@@ -1,7 +1,7 @@
;;; ERROR: 1
(module (memory))
(;; STDERR ;;;
-parse/module/bad-memory-empty.txt:2:16: syntax error, unexpected ), expecting NAT
+out/test/parse/module/bad-memory-empty.txt:2:16: syntax error, unexpected ), expecting NAT
(module (memory))
^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-memory-init-size-negative.txt b/test/parse/module/bad-memory-init-size-negative.txt
index 93003f01..4f7b824a 100644
--- a/test/parse/module/bad-memory-init-size-negative.txt
+++ b/test/parse/module/bad-memory-init-size-negative.txt
@@ -1,7 +1,7 @@
;;; ERROR: 1
(module (memory -100))
(;; STDERR ;;;
-parse/module/bad-memory-init-size-negative.txt:2:17: syntax error, unexpected INT, expecting NAT
+out/test/parse/module/bad-memory-init-size-negative.txt:2:17: syntax error, unexpected INT, expecting NAT
(module (memory -100))
^^^^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-memory-init-size-too-big.txt b/test/parse/module/bad-memory-init-size-too-big.txt
index ef116334..3e47a1ca 100644
--- a/test/parse/module/bad-memory-init-size-too-big.txt
+++ b/test/parse/module/bad-memory-init-size-too-big.txt
@@ -1,7 +1,7 @@
;;; ERROR: 1
(module (memory 65537))
(;; STDERR ;;;
-parse/module/bad-memory-init-size-too-big.txt:2:9: initial pages (65537) must be <= (65536)
+out/test/parse/module/bad-memory-init-size-too-big.txt:2:9: initial pages (65537) must be <= (65536)
(module (memory 65537))
^^^^^^^^^^^^^^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-memory-init-size.txt b/test/parse/module/bad-memory-init-size.txt
index ccbf7c6b..b3a894b0 100644
--- a/test/parse/module/bad-memory-init-size.txt
+++ b/test/parse/module/bad-memory-init-size.txt
@@ -1,10 +1,10 @@
;;; ERROR: 1
(module (memory foo))
(;; STDERR ;;;
-parse/module/bad-memory-init-size.txt:2:17: unexpected token "foo"
+out/test/parse/module/bad-memory-init-size.txt:2:17: unexpected token "foo"
(module (memory foo))
^^^
-parse/module/bad-memory-init-size.txt:2:20: syntax error, unexpected ), expecting NAT
+out/test/parse/module/bad-memory-init-size.txt:2:20: syntax error, unexpected ), expecting NAT
(module (memory foo))
^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-memory-max-less-than-init.txt b/test/parse/module/bad-memory-max-less-than-init.txt
index 7b511843..b5d74426 100644
--- a/test/parse/module/bad-memory-max-less-than-init.txt
+++ b/test/parse/module/bad-memory-max-less-than-init.txt
@@ -1,7 +1,7 @@
;;; ERROR: 1
(module (memory 2 1))
(;; STDERR ;;;
-parse/module/bad-memory-max-less-than-init.txt:2:9: max pages (1) must be >= initial pages (2)
+out/test/parse/module/bad-memory-max-less-than-init.txt:2:9: max pages (1) must be >= initial pages (2)
(module (memory 2 1))
^^^^^^^^^^^^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-memory-max-size-negative.txt b/test/parse/module/bad-memory-max-size-negative.txt
index 5d0ec65a..bd65f811 100644
--- a/test/parse/module/bad-memory-max-size-negative.txt
+++ b/test/parse/module/bad-memory-max-size-negative.txt
@@ -1,7 +1,7 @@
;;; ERROR: 1
(module (memory 100 -5))
(;; STDERR ;;;
-parse/module/bad-memory-max-size-negative.txt:2:21: syntax error, unexpected INT, expecting )
+out/test/parse/module/bad-memory-max-size-negative.txt:2:21: syntax error, unexpected INT, expecting )
(module (memory 100 -5))
^^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-memory-max-size-too-big.txt b/test/parse/module/bad-memory-max-size-too-big.txt
index eae3f151..998d7e07 100644
--- a/test/parse/module/bad-memory-max-size-too-big.txt
+++ b/test/parse/module/bad-memory-max-size-too-big.txt
@@ -1,7 +1,7 @@
;;; ERROR: 1
(module (memory 0 65537))
(;; STDERR ;;;
-parse/module/bad-memory-max-size-too-big.txt:2:9: max pages (65537) must be <= (65536)
+out/test/parse/module/bad-memory-max-size-too-big.txt:2:9: max pages (65537) must be <= (65536)
(module (memory 0 65537))
^^^^^^^^^^^^^^^^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-memory-max-size.txt b/test/parse/module/bad-memory-max-size.txt
index 304a1094..c8e6e34c 100644
--- a/test/parse/module/bad-memory-max-size.txt
+++ b/test/parse/module/bad-memory-max-size.txt
@@ -1,7 +1,7 @@
;;; ERROR: 1
(module (memory 100 foo))
(;; STDERR ;;;
-parse/module/bad-memory-max-size.txt:2:21: unexpected token "foo"
+out/test/parse/module/bad-memory-max-size.txt:2:21: unexpected token "foo"
(module (memory 100 foo))
^^^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-memory-segment-address.txt b/test/parse/module/bad-memory-segment-address.txt
index 52a4607d..2d0d543a 100644
--- a/test/parse/module/bad-memory-segment-address.txt
+++ b/test/parse/module/bad-memory-segment-address.txt
@@ -3,10 +3,10 @@
(memory 100)
(data foo))
(;; STDERR ;;;
-parse/module/bad-memory-segment-address.txt:4:9: unexpected token "foo"
+out/test/parse/module/bad-memory-segment-address.txt:4:9: unexpected token "foo"
(data foo))
^^^
-parse/module/bad-memory-segment-address.txt:4:12: syntax error, unexpected ), expecting ( or NAT or VAR
+out/test/parse/module/bad-memory-segment-address.txt:4:12: syntax error, unexpected ), expecting ( or NAT or VAR
(data foo))
^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-memory-too-many.txt b/test/parse/module/bad-memory-too-many.txt
index f4913655..944baded 100644
--- a/test/parse/module/bad-memory-too-many.txt
+++ b/test/parse/module/bad-memory-too-many.txt
@@ -3,7 +3,7 @@
(memory 1)
(memory 2))
(;; STDERR ;;;
-parse/module/bad-memory-too-many.txt:4:3: only one memory block allowed
+out/test/parse/module/bad-memory-too-many.txt:4:3: only one memory block allowed
(memory 2))
^^^^^^^^^^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-module-no-close.txt b/test/parse/module/bad-module-no-close.txt
index 1bcfa153..cd4b2549 100644
--- a/test/parse/module/bad-module-no-close.txt
+++ b/test/parse/module/bad-module-no-close.txt
@@ -1,5 +1,5 @@
;;; ERROR: 1
(module
(;; STDERR ;;;
-parse/module/bad-module-no-close.txt:3:1: syntax error, unexpected EOF, expecting ( or )
+out/test/parse/module/bad-module-no-close.txt:3:1: syntax error, unexpected EOF, expecting ( or )
;;; STDERR ;;)
diff --git a/test/parse/module/bad-start-not-nullary.txt b/test/parse/module/bad-start-not-nullary.txt
index 9ded47f8..5745327e 100644
--- a/test/parse/module/bad-start-not-nullary.txt
+++ b/test/parse/module/bad-start-not-nullary.txt
@@ -3,7 +3,7 @@
(start 0)
(func (param i32)))
(;; STDERR ;;;
-parse/module/bad-start-not-nullary.txt:3:3: start function must be nullary
+out/test/parse/module/bad-start-not-nullary.txt:3:3: start function must be nullary
(start 0)
^^^^^^^^^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-start-not-void.txt b/test/parse/module/bad-start-not-void.txt
index 7a0ab7c7..23ee6900 100644
--- a/test/parse/module/bad-start-not-void.txt
+++ b/test/parse/module/bad-start-not-void.txt
@@ -4,7 +4,7 @@
(func (result i32)
i32.const 0))
(;; STDERR ;;;
-parse/module/bad-start-not-void.txt:3:3: start function must not return anything
+out/test/parse/module/bad-start-not-void.txt:3:3: start function must not return anything
(start 0)
^^^^^^^^^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-start-too-many.txt b/test/parse/module/bad-start-too-many.txt
index 467577b6..ba18c15c 100644
--- a/test/parse/module/bad-start-too-many.txt
+++ b/test/parse/module/bad-start-too-many.txt
@@ -5,7 +5,7 @@
(func)
(func))
(;; STDERR ;;;
-parse/module/bad-start-too-many.txt:4:3: only one start function allowed
+out/test/parse/module/bad-start-too-many.txt:4:3: only one start function allowed
(start 1)
^^^^^^^^^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-table-invalid-function.txt b/test/parse/module/bad-table-invalid-function.txt
index 6269a381..fa36ad84 100644
--- a/test/parse/module/bad-table-invalid-function.txt
+++ b/test/parse/module/bad-table-invalid-function.txt
@@ -4,7 +4,7 @@
(func $f)
(elem (i32.const 0) $f 1))
(;; STDERR ;;;
-parse/module/bad-table-invalid-function.txt:5:26: function variable out of range (max 1)
+out/test/parse/module/bad-table-invalid-function.txt:5:26: function variable out of range (max 1)
(elem (i32.const 0) $f 1))
^
;;; STDERR ;;)
diff --git a/test/parse/module/bad-table-too-many.txt b/test/parse/module/bad-table-too-many.txt
index f86b3fc4..7c25d640 100644
--- a/test/parse/module/bad-table-too-many.txt
+++ b/test/parse/module/bad-table-too-many.txt
@@ -4,7 +4,7 @@
(table anyfunc (elem 0))
(table anyfunc (elem 0)))
(;; STDERR ;;;
-parse/module/bad-table-too-many.txt:5:3: only one table allowed
+out/test/parse/module/bad-table-too-many.txt:5:3: only one table allowed
(table anyfunc (elem 0)))
^^^^^^^^^^^^^^^^^^^^^^^^
;;; STDERR ;;)