[pypy-commit] pypy default: Make tests reflect the reality. It actually works, but a bit by chance

fijal noreply at buildbot.pypy.org
Tue Nov 29 13:42:13 CET 2011


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: 
Changeset: r49956:2158b5ddab51
Date: 2011-11-29 14:34 +0200
http://bitbucket.org/pypy/pypy/changeset/2158b5ddab51/

Log:	Make tests reflect the reality. It actually works, but a bit by
	chance

diff --git a/pypy/module/micronumpy/test/test_numarray.py b/pypy/module/micronumpy/test/test_numarray.py
--- a/pypy/module/micronumpy/test/test_numarray.py
+++ b/pypy/module/micronumpy/test/test_numarray.py
@@ -263,7 +263,7 @@
         assert a[1] == 0.
         assert a[3] == 1.
         b[::-1] = b
-        assert b[0] == 1.
+        assert b[0] == 0.
         assert b[1] == 0.
 
     def test_setslice_of_slice_array(self):
@@ -751,11 +751,14 @@
         assert not bool(array([0]))
 
     def test_slice_assignment(self):
-        from numpypy import arange
-        a = arange(5)
+        from numpypy import array
+        a = array(range(5))
         a[::-1] = a
         assert (a == [0, 1, 2, 1, 0]).all()
-
+        # but we force intermediates
+        a = array(range(5))
+        a[::-1] = a + a
+        assert (a == [8, 6, 4, 2, 0]).all()
 
 class AppTestMultiDim(BaseNumpyAppTest):
     def test_init(self):


More information about the pypy-commit mailing list