Author: Ronan Lamy <ronan.l...@gmail.com>
Branch: scalar-operations
Changeset: r72328:210fb8550c7c
Date: 2014-07-03 15:51 +0100
http://bitbucket.org/pypy/pypy/changeset/210fb8550c7c/

Log:    Re-enable important test

diff --git a/pypy/module/pypyjit/test_pypy_c/test_micronumpy.py 
b/pypy/module/pypyjit/test_pypy_c/test_micronumpy.py
--- a/pypy/module/pypyjit/test_pypy_c/test_micronumpy.py
+++ b/pypy/module/pypyjit/test_pypy_c/test_micronumpy.py
@@ -30,6 +30,7 @@
         """)
 
     def test_array_getitem_accumulate(self):
+        """Check that operations/ufuncs on array items are jitted correctly"""
         def main():
             import _numpypy.multiarray as np
             arr = np.zeros((300, 300))
@@ -43,7 +44,6 @@
         log = self.run(main, [])
         assert log.result == 0
         loop, = log.loops_by_filename(self.filepath)
-        skip('used to pass on 69421-f3e717c94913')
         assert loop.match("""
             i81 = int_lt(i76, 300)
             guard_true(i81, descr=...)
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to