diff options
author | Andreas Schwab <schwab@suse.de> | 2019-03-05 10:30:23 +0100 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2019-03-05 10:35:23 +0100 |
commit | d9c3878d3a9147f34ae5fadfe45b2c28431ba5d7 (patch) | |
tree | ddcab6f806e6c6cb1618e75a19be3e7cc8627664 | |
parent | 15b092f5541e80d7c3d0108957406c6f8686aba0 (diff) | |
download | numpy-d9c3878d3a9147f34ae5fadfe45b2c28431ba5d7.tar.gz |
BUG: ppc is using IBM double double
This fixes TestConversion.test_int_from_huge_longdouble.
-rw-r--r-- | numpy/core/tests/test_scalarmath.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/tests/test_scalarmath.py b/numpy/core/tests/test_scalarmath.py index 51bcf2b8d..ebba457e3 100644 --- a/numpy/core/tests/test_scalarmath.py +++ b/numpy/core/tests/test_scalarmath.py @@ -422,7 +422,7 @@ class TestConversion(object): @pytest.mark.skipif(np.finfo(np.double) == np.finfo(np.longdouble), reason="long double is same as double") - @pytest.mark.skipif(platform.machine().startswith("ppc64"), + @pytest.mark.skipif(platform.machine().startswith("ppc"), reason="IBM double double") def test_int_from_huge_longdouble(self): # Produce a longdouble that would overflow a double, |