diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-01-22 15:57:18 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-01-22 15:57:18 -0800 |
commit | 00c0ccc15b36742bdbb472ce09b1eae7616e822f (patch) | |
tree | d370b3d642a188aa566176b402851ab428e8530e | |
parent | 1a899000422116a9d19f0e4636771f36a8f205ad (diff) |
skip test_debug in asm3
-rw-r--r-- | tests/test_core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_core.py b/tests/test_core.py index 311f33a0..d25847d7 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -5954,7 +5954,7 @@ def process(filename): def test_debug(self): if '-g' not in Building.COMPILER_TEST_OPTS: Building.COMPILER_TEST_OPTS.append('-g') if self.emcc_args is not None: - if '-O1' in self.emcc_args or '-O2' in self.emcc_args: return self.skip('optimizations remove LLVM debug info') + if '-O1' in self.emcc_args or '-O2' in self.emcc_args or '-O3' in self.emcc_args: return self.skip('optimizations remove LLVM debug info') src = ''' #include <stdio.h> |