summaryrefslogtreecommitdiff
path: root/numpy/random/tests/test_random.py
diff options
context:
space:
mode:
authorJulian Taylor <jtaylor.debian@googlemail.com>2014-09-13 14:06:29 +0200
committerJulian Taylor <jtaylor.debian@googlemail.com>2014-09-14 15:48:45 +0200
commit2000e83fadee82a9b5d2f642d7c02a2cb907b073 (patch)
treebf0bdf72cbcd5f1cee7a1aef621f956a9c66eda4 /numpy/random/tests/test_random.py
parent7e8e7a2890e992cb4377b494fb89c8102d15fba4 (diff)
downloadnumpy-2000e83fadee82a9b5d2f642d7c02a2cb907b073.tar.gz
TST: gnufreebsd has fixed the thread control word loss
http://lists.alioth.debian.org/pipermail/glibc-bsd-commits/2014-September/004163.html
Diffstat (limited to 'numpy/random/tests/test_random.py')
-rw-r--r--numpy/random/tests/test_random.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/numpy/random/tests/test_random.py b/numpy/random/tests/test_random.py
index 1bf25a926..98a40bc71 100644
--- a/numpy/random/tests/test_random.py
+++ b/numpy/random/tests/test_random.py
@@ -680,9 +680,7 @@ class TestThread(object):
function(np.random.RandomState(s), o)
# these platforms change x87 fpu precision mode in threads
- if (np.intp().dtype.itemsize == 4 and
- (sys.platform == "win32" or
- sys.platform.startswith("gnukfreebsd"))):
+ if (np.intp().dtype.itemsize == 4 and sys.platform == "win32"):
np.testing.assert_array_almost_equal(out1, out2)
else:
np.testing.assert_array_equal(out1, out2)