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

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