diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-02-08 12:01:42 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-02-08 12:01:42 -0800 |
commit | 28ac77ff3f5668d543a6c7a99f3e1b1dceff6201 (patch) | |
tree | 7d85bb4d6ab8531abc074d3a5043fb00963fdb9e | |
parent | d241be7ea16782273b626ce88da4fe87bd206455 (diff) | |
download | binaryen-28ac77ff3f5668d543a6c7a99f3e1b1dceff6201.tar.gz binaryen-28ac77ff3f5668d543a6c7a99f3e1b1dceff6201.tar.bz2 binaryen-28ac77ff3f5668d543a6c7a99f3e1b1dceff6201.zip |
make mem.cpp test less sensitive to stack positions
-rw-r--r-- | test/mem.post.js | 2 | ||||
-rw-r--r-- | test/mem.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/mem.post.js b/test/mem.post.js index c4cf49a70..4dcfb7a83 100644 --- a/test/mem.post.js +++ b/test/mem.post.js @@ -49,5 +49,5 @@ test('u32'); test('f32'); test('f64'); -Module.print('stack: ' + Module['_get_stack']()); +Module.print('stack: ' + (Module['_get_stack']() > 8)); diff --git a/test/mem.txt b/test/mem.txt index cf3382b8c..13d237765 100644 --- a/test/mem.txt +++ b/test/mem.txt @@ -190,4 +190,4 @@ f64 4294967294 ==> 4294967294 pre ==> 4294967294 post ==> -1.066886858533604e+282 -stack: 3808 +stack: true |