diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-11-30 19:00:41 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-12-07 14:23:21 -0800 |
commit | 30db3b5922b0bd82facb7115f7ce901fb2b06443 (patch) | |
tree | 432632dfe8fd857c982f34a88db0d6000bfacf63 | |
parent | a7a3f3e80a95fbdfa85600d3d9180a7e71d942b9 (diff) |
disable test_linespecific in asm
-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 dd92ff9b..6c416146 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -7106,6 +7106,8 @@ def process(filename): assert 'Assertion failed' in str(e), str(e) def test_linespecific(self): + if Settings.ASM_JS: return self.skip('asm does not support i64 yet') + if '-g' not in Building.COMPILER_TEST_OPTS: Building.COMPILER_TEST_OPTS.append('-g') if self.emcc_args: self.emcc_args += ['--llvm-opts', '0'] # llvm full opts make the expected failures here not happen |