diff options
author | Douglas Crosher <info@jsstats.com> | 2016-01-18 14:58:50 +1100 |
---|---|---|
committer | Douglas Crosher <info@jsstats.com> | 2016-03-04 10:04:21 +1100 |
commit | 87ca6c9662c9f5f51bbc86c06462d664b5f66d0c (patch) | |
tree | fec5d909e09db139bcdfc3d146f88232e21bea00 /test/parse/module/bad-memory-max-less-than-init.txt | |
parent | 2029de9cd1a617b6dd7a5fbf18eb01d041b55633 (diff) | |
download | wabt-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.txt | 6 |
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 ;;) |