diff options
author | Kwadwo 'Que' Amankwa <jofreezy@hotmail.co.uk> | 2016-11-01 00:51:34 +0000 |
---|---|---|
committer | Ben Smith <binjimin@gmail.com> | 2016-10-31 17:51:34 -0700 |
commit | cb7fd7ded9b78b40f6e511735a74e91cacba98c3 (patch) | |
tree | 6604fccdda6c7beb834871c05d4333863ee7a1b8 /test/parse/expr/bad-const-i32-overflow.txt | |
parent | b284c48616fff555752b426f3792c0a24aad8ac1 (diff) | |
download | wabt-cb7fd7ded9b78b40f6e511735a74e91cacba98c3.tar.gz wabt-cb7fd7ded9b78b40f6e511735a74e91cacba98c3.tar.bz2 wabt-cb7fd7ded9b78b40f6e511735a74e91cacba98c3.zip |
Update tests syntax to new flat syntax (#193)
* more tests converted to new syntax
Diffstat (limited to 'test/parse/expr/bad-const-i32-overflow.txt')
-rw-r--r-- | test/parse/expr/bad-const-i32-overflow.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/parse/expr/bad-const-i32-overflow.txt b/test/parse/expr/bad-const-i32-overflow.txt index f3ae25bb..21bc996b 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))) +(module (func i32.const 4294967296)) (;; STDERR ;;; -parse/expr/bad-const-i32-overflow.txt:2:26: invalid literal "4294967296" -(module (func (i32.const 4294967296))) - ^^^^^^^^^^ +parse/expr/bad-const-i32-overflow.txt:2:25: invalid literal "4294967296" +(module (func i32.const 4294967296)) + ^^^^^^^^^^ ;;; STDERR ;;) |