[pypy-svn] r68062 - pypy/branch/floats-via-sse2/pypy/jit/metainterp/test

fijal at codespeak.net fijal at codespeak.net
Wed Sep 30 22:46:45 CEST 2009


Author: fijal
Date: Wed Sep 30 22:46:45 2009
New Revision: 68062

Modified:
   pypy/branch/floats-via-sse2/pypy/jit/metainterp/test/test_executor.py
Log:
one more test just in case...


Modified: pypy/branch/floats-via-sse2/pypy/jit/metainterp/test/test_executor.py
==============================================================================
--- pypy/branch/floats-via-sse2/pypy/jit/metainterp/test/test_executor.py	(original)
+++ pypy/branch/floats-via-sse2/pypy/jit/metainterp/test/test_executor.py	Wed Sep 30 22:46:45 2009
@@ -107,6 +107,7 @@
         yield (rop.FLOAT_NE, [10.125, y], 'int', 10.125 != y)
         yield (rop.FLOAT_GT, [10.125, y], 'int', 10.125 > y)
         yield (rop.FLOAT_GE, [10.125, y], 'int', 10.125 >= y)
+    yield (rop.FLOAT_EQ, [0.0, -0.0], 'int', 0.0 == -0.0)
 
 def _float_unary_operations():
     yield (rop.FLOAT_NEG, [-5.9], 'float', 5.9)



More information about the Pypy-commit mailing list