summaryrefslogtreecommitdiff
path: root/numpy/random/tests/test_random.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2014-09-14 09:46:31 -0600
committerCharles Harris <charlesr.harris@gmail.com>2014-09-14 09:46:31 -0600
commitd98e57c25b51ec3a0826e4bd1bf83488d8cfbc2f (patch)
treef2d0a68666776dd222afd17f73bf6609db36a33c /numpy/random/tests/test_random.py
parent04f6c0fe5a80b982f6da88fda47ecf6c05122370 (diff)
parent2000e83fadee82a9b5d2f642d7c02a2cb907b073 (diff)
downloadnumpy-d98e57c25b51ec3a0826e4bd1bf83488d8cfbc2f.tar.gz
Merge pull request #5070 from juliantaylor/gnubsd-fix
TST: gnufreebsd has fixed the thread control word loss
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)