summaryrefslogtreecommitdiff
path: root/test/parse/module/bad-memory-max-less-than-init.txt
diff options
context:
space:
mode:
authorDouglas Crosher <info@jsstats.com>2016-01-18 14:58:50 +1100
committerDouglas Crosher <info@jsstats.com>2016-03-04 10:04:21 +1100
commit87ca6c9662c9f5f51bbc86c06462d664b5f66d0c (patch)
treefec5d909e09db139bcdfc3d146f88232e21bea00 /test/parse/module/bad-memory-max-less-than-init.txt
parent2029de9cd1a617b6dd7a5fbf18eb01d041b55633 (diff)
downloadwabt-87ca6c9662c9f5f51bbc86c06462d664b5f66d0c.tar.gz
wabt-87ca6c9662c9f5f51bbc86c06462d664b5f66d0c.tar.bz2
wabt-87ca6c9662c9f5f51bbc86c06462d664b5f66d0c.zip
Change the memory sizes to be in units of pages rather than powers of two.
Diffstat (limited to 'test/parse/module/bad-memory-max-less-than-init.txt')
-rw-r--r--test/parse/module/bad-memory-max-less-than-init.txt6
1 files changed, 3 insertions, 3 deletions
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 3435cc70..79668cc3 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 100 50))
+(module (memory 2 1))
(;; STDERR ;;;
-parse/module/bad-memory-max-less-than-init.txt:2:10: max size (50) must be greater than or equal to initial size (100)
-(module (memory 100 50))
+parse/module/bad-memory-max-less-than-init.txt:2:10: max pages (1) must be greater than or equal to initial pages (2)
+(module (memory 2 1))
^^^^^^
;;; STDERR ;;)