aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Mitchener <bruce.mitchener@gmail.com>2013-09-10 19:38:48 +0700
committerAlon Zakai <alonzakai@gmail.com>2013-09-13 10:07:03 -0700
commit03a74d3600462fbcaf44168b170a9486ca0178c2 (patch)
treed35b4f8fdc0ab21d050bbe7ad019a5b2ecc9f3e1
parent8f1db82f5ab8c2fdfcdeccd7e502f1854da5d696 (diff)
Skip test_math unless using ta2
isfinite and friends require ta2 with musl headers.
-rw-r--r--tests/test_core.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_core.py b/tests/test_core.py
index d02e6778..dd3b7c44 100644
--- a/tests/test_core.py
+++ b/tests/test_core.py
@@ -1431,6 +1431,7 @@ Succeeded!
self.do_run(src, 'BUG?\nDisplay: Vu=465.100000 Vv=465.200000 Wu=160.300000 Wv=111.400000')
def test_math(self):
+ if Settings.USE_TYPED_ARRAYS != 2: return self.skip('requires ta2')
src = '''
#include <stdio.h>
#include <stdlib.h>