summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_math.py
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2007-07-26 14:03:00 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2007-07-26 14:03:00 (GMT)
commit00f2029cd57ded3be287041b527c84cd8442afd5 (patch)
treef6a637e4848f7225feaeadcda6bc71bff6da605c /Lib/test/test_math.py
parentc473149a5a93e4648b559023e5420b07e2832b4d (diff)
downloadcpython-00f2029cd57ded3be287041b527c84cd8442afd5.zip
cpython-00f2029cd57ded3be287041b527c84cd8442afd5.tar.gz
cpython-00f2029cd57ded3be287041b527c84cd8442afd5.tar.bz2
Add explicit test for a misbehaving math.floor
Diffstat (limited to 'Lib/test/test_math.py')
-rw-r--r--Lib/test/test_math.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_math.py b/Lib/test/test_math.py
index a45fc34..699c621 100644
--- a/Lib/test/test_math.py
+++ b/Lib/test/test_math.py
@@ -92,6 +92,10 @@ class MathTests(unittest.TestCase):
self.ftest('floor(-0.5)', math.floor(-0.5), -1)
self.ftest('floor(-1.0)', math.floor(-1.0), -1)
self.ftest('floor(-1.5)', math.floor(-1.5), -2)
+ # pow() relies on floor() to check for integers
+ # This fails on some platforms - so check it here
+ self.ftest('floor(1.23e167)', math.floor(1.23e167), 1.23e167)
+ self.ftest('floor(-1.23e167)', math.floor(-1.23e167), -1.23e167)
def testFmod(self):
self.assertRaises(TypeError, math.fmod)