diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-11-14 14:57:35 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-11-14 17:40:48 -0800 |
commit | d298deb2eb2e08369904ea93b90696679338d9fa (patch) | |
tree | cb7ec1bca1b44a59ea47660ad3d581ac60446b31 | |
parent | b397086dab259638aaaddf3520cb6d90d6caae62 (diff) |
disable asm2x86.test_sqlite due to legalization error on llvm 3.3
-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 34a9b372..c0196a35 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -8902,6 +8902,7 @@ def process(filename): def test_sqlite(self): # gcc -O3 -I/home/alon/Dev/emscripten/tests/sqlite -ldl src.c if self.emcc_args is None: return self.skip('Very slow without ta2, and we would also need to include dlmalloc manually without emcc') + if not self.is_le32(): return self.skip('fails on x86 due to a legalization issue on llvm 3.3') if Settings.QUANTUM_SIZE == 1: return self.skip('TODO FIXME') self.banned_js_engines = [NODE_JS] # OOM in older node |