diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-03-18 11:08:31 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-03-18 11:08:31 -0700 |
commit | eb3e21e2edbcf71a20e3f1676dac8937afcb5d25 (patch) | |
tree | 0706fdcc8a0d69fa7c452544fbf25d9e9ee6bd9b /tests | |
parent | 855894f1724ae372ff4b64a6a4805564397422b6 (diff) |
mark undefined symbol as dead in bullet
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/runner.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/runner.py b/tests/runner.py index 75dbbad3..a5eb7ede 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -7320,6 +7320,8 @@ def process(filename): if self.emcc_args is None: return self.skip('requires emcc') if Building.LLVM_OPTS and self.emcc_args is None: Settings.SAFE_HEAP = 0 # Optimizations make it so we do not have debug info on the line we need to ignore + Settings.DEAD_FUNCTIONS = ['__ZSt9terminatev'] + # Note: this is also a good test of per-file and per-line changes (since we have multiple files, and correct specific lines) if Settings.SAFE_HEAP: # Ignore bitfield warnings |