diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-10-03 10:49:08 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-10-03 10:53:57 -0700 |
commit | be93f604b8c5b529814efacd729455856e96ebf0 (patch) | |
tree | a06a70052fe78e937aa40a17f98f712300dd0f3e /tests | |
parent | daae8bdf7894bb4d4e9461b5b841c14019c6559a (diff) |
disable heap align check in test_files, it mixes poorly with closure
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_core.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_core.py b/tests/test_core.py index 92edbaf4..80933937 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -7266,6 +7266,7 @@ date: 18.07.2013w; day 18, month 7, year 2013, extra: 201, 3 if self.emcc_args is not None and '-O2' in self.emcc_args: self.emcc_args += ['--closure', '1'] # Use closure here, to test we don't break FS stuff self.emcc_args = filter(lambda x: x != '-g', self.emcc_args) # ensure we test --closure 1 --memory-init-file 1 (-g would disable closure) + self.emcc_args += ["-s", "CHECK_HEAP_ALIGN=0"] # disable heap align check here, it mixes poorly with closure Settings.CORRECT_SIGNS = 1 # Just so our output is what we expect. Can flip them both. post = ''' |