Blame 00150-disable-rAssertAlmostEqual-cmath-on-ppc.patch

fb26433
diff -up Python-3.2.2/Lib/test/test_cmath.py.ppc Python-3.2.2/Lib/test/test_cmath.py
fb26433
--- Python-3.2.2/Lib/test/test_cmath.py.ppc	2011-12-07 23:43:55.000000000 +0100
fb26433
+++ Python-3.2.2/Lib/test/test_cmath.py	2011-12-07 23:49:44.000000000 +0100
fb26433
@@ -95,6 +95,7 @@ class CMathTests(unittest.TestCase):
fb26433
         self.assertFloatIdentical(x.real, y.real)
fb26433
         self.assertFloatIdentical(x.imag, y.imag)
fb26433
 
fb26433
+    @unittest.skip('Known failure on PPC: glibc bug https://bugzilla.redhat.com/show_bug.cgi?id=750811')
fb26433
     def rAssertAlmostEqual(self, a, b, rel_err = 2e-15, abs_err = 5e-323,
fb26433
                            msg=None):
fb26433
         """Fail if the two floating-point numbers are not almost equal.