summaryrefslogtreecommitdiff
path: root/test/regress/data-count-without-data-section.txt
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/data-count-without-data-section.txt')
-rw-r--r--test/regress/data-count-without-data-section.txt14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/regress/data-count-without-data-section.txt b/test/regress/data-count-without-data-section.txt
new file mode 100644
index 00000000..8fa1ed69
--- /dev/null
+++ b/test/regress/data-count-without-data-section.txt
@@ -0,0 +1,14 @@
+;;; TOOL: run-interp-spec
+(assert_malformed
+ (module binary
+ "\00asm" "\01\00\00\00"
+ "\05\03\01\00\01" ;; Memory section with one entry
+ "\0c\01\01" ;; Data count section with value 1
+ )
+ "data count and data section have inconsistent lengths"
+)
+(;; STDOUT ;;;
+out/test/regress/data-count-without-data-section.txt:3: assert_malformed passed:
+ 0000010: error: Data section missing but DataCount non-zero
+1/1 tests passed.
+;;; STDOUT ;;)