diff options
| author | Micah Anderson <micah@riseup.net> | 2014-08-11 16:34:44 -0400 |
|---|---|---|
| committer | Micah Anderson <micah@riseup.net> | 2014-08-11 16:34:44 -0400 |
| commit | cc2f4508d4b8bc5146611eaa0290e7dbe2fdf00f (patch) | |
| tree | 0365c18dae4919ba9d3854982336ec1425f265c7 /debian/patches/noncopysend-test.patch | |
| parent | cce638a8adf4e045ca5505afea4bda57753c31dd (diff) | |
upstream importupstream/14.3.1
Diffstat (limited to 'debian/patches/noncopysend-test.patch')
| -rw-r--r-- | debian/patches/noncopysend-test.patch | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/debian/patches/noncopysend-test.patch b/debian/patches/noncopysend-test.patch deleted file mode 100644 index 4880ae1..0000000 --- a/debian/patches/noncopysend-test.patch +++ /dev/null @@ -1,20 +0,0 @@ -Description: don't use uninitialized memory for test - the memory could contain signalling NaN which crashes sparc python -Author: Julian Taylor <jtaylor.debian@googlemail.com> -Forwarded: not-needed - ---- a/zmq/tests/test_message.py -+++ b/zmq/tests/test_message.py -@@ -324,10 +324,8 @@ class TestFrame(BaseZMQTestCase): - for i in range(1,len(shapes)+1): - shape = shapes[:i] - for dt in dtypes: -- A = numpy.empty(shape, dtype=dt) -- while numpy.isnan(A).any(): -- # don't let nan sneak in -- A = numpy.ndarray(shape, dtype=dt) -+ A = numpy.random.uniform(-10000000, -+ 1000000, size=shape).astype(dt) - a.send(A, copy=False) - msg = b.recv(copy=False) - |
