diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-10-15 17:42:22 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-10-15 17:42:22 -0700 |
commit | 9ca5fc4f2af23e78e8f44e89b5024588d0f57cf8 (patch) | |
tree | ccc3bb7b8358e245f769b8f33e7dd6ac326ac4b9 /tests/test_core.py | |
parent | 3d5f213c50a2d351d8fc0bc7fb817f6d25d6462e (diff) |
disable test_iostream in non-ta2, where the mem initializer being aliased is a problem
Diffstat (limited to 'tests/test_core.py')
-rw-r--r-- | tests/test_core.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/test_core.py b/tests/test_core.py index 102fa447..8ba9295a 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -8095,11 +8095,7 @@ int main(int argc, char **argv) { def test_iostream(self): if Settings.QUANTUM_SIZE == 1: return self.skip("we don't support libcxx in q1") - - if self.emcc_args is None: - if Building.LLVM_OPTS: return self.skip('optimizing bitcode before emcc can confuse libcxx inclusion') - self.emcc_args = [] # libc++ auto-inclusion is only done if we use emcc - Settings.SAFE_HEAP = 0 # Some spurious warnings from libc++ internals + if self.emcc_args is None: return self.skip('needs ta2 and emcc') src = ''' #include <iostream> |