[pypy-commit] pypy win32-cleanup2: sign of nan is not defined, skip test

mattip noreply at buildbot.pypy.org
Sun Apr 8 13:09:01 CEST 2012


Author: Matti Picus <matti.picus at gmail.com>
Branch: win32-cleanup2
Changeset: r54248:d31590b69d3c
Date: 2012-04-08 13:49 +0300
http://bitbucket.org/pypy/pypy/changeset/d31590b69d3c/

Log:	sign of nan is not defined, skip test

diff --git a/pypy/module/math/test/test_math.py b/pypy/module/math/test/test_math.py
--- a/pypy/module/math/test/test_math.py
+++ b/pypy/module/math/test/test_math.py
@@ -271,5 +271,6 @@
         assert math.trunc(foo()) == "truncated"
 
     def test_copysign_nan(self):
+        skip('sign of nan is undefined')
         import math
         assert math.copysign(1.0, float('-nan')) == -1.0


More information about the pypy-commit mailing list