Blame SOURCES/00164-disable-interrupted_write-tests-on-ppc.patch

8dc7a2
diff -up Python-3.4.2/Lib/test/test_exceptions.py.ppc Python-3.4.2/Lib/test/test_exceptions.py
8dc7a2
--- Python-3.4.2/Lib/test/test_exceptions.py.ppc	2014-10-08 04:18:13.000000000 -0400
8dc7a2
+++ Python-3.4.2/Lib/test/test_exceptions.py	2015-01-12 05:56:15.922833055 -0500
8dc7a2
@@ -429,6 +429,7 @@ class ExceptionTests(unittest.TestCase):
8dc7a2
         self.assertIsNone(e.__context__)
8dc7a2
         self.assertIsNone(e.__cause__)
8dc7a2
 
8dc7a2
+    @unittest.skip('rhbz#846849')
8dc7a2
     def testChainingDescriptors(self):
8dc7a2
         try:
8dc7a2
             raise Exception()
8dc7a2
diff -up Python-3.4.2/Lib/test/test_io.py.ppc Python-3.4.2/Lib/test/test_io.py
8dc7a2
--- Python-3.4.2/Lib/test/test_io.py.ppc	2015-01-12 05:56:15.922833055 -0500
8dc7a2
+++ Python-3.4.2/Lib/test/test_io.py	2015-01-12 05:58:23.482833055 -0500
8dc7a2
@@ -3296,12 +3296,15 @@ class SignalsTest(unittest.TestCase):
8dc7a2
                 if e.errno != errno.EBADF:
8dc7a2
                     raise
8dc7a2
 
8dc7a2
+    @unittest.skip('rhbz#846849')
8dc7a2
     def test_interrupted_write_unbuffered(self):
8dc7a2
         self.check_interrupted_write(b"xy", b"xy", mode="wb", buffering=0)
8dc7a2
 
8dc7a2
+    @unittest.skip('rhbz#846849')
8dc7a2
     def test_interrupted_write_buffered(self):
8dc7a2
         self.check_interrupted_write(b"xy", b"xy", mode="wb")
8dc7a2
 
8dc7a2
+    @unittest.skip('rhbz#846849')
8dc7a2
     # Issue #22331: The test hangs on FreeBSD 7.2
8dc7a2
     @support.requires_freebsd_version(8)
8dc7a2
     def test_interrupted_write_text(self):
8dc7a2
diff -up Python-3.4.2/Lib/test/test_raise.py.ppc Python-3.4.2/Lib/test/test_raise.py
8dc7a2
--- Python-3.4.2/Lib/test/test_raise.py.ppc	2014-10-08 04:18:14.000000000 -0400
8dc7a2
+++ Python-3.4.2/Lib/test/test_raise.py	2015-01-12 05:56:15.922833055 -0500
8dc7a2
@@ -151,6 +151,7 @@ class TestRaise(unittest.TestCase):
8dc7a2
 
8dc7a2
 class TestCause(unittest.TestCase):
8dc7a2
 
8dc7a2
+    @unittest.skip('rhbz#846849')
8dc7a2
     def testCauseSyntax(self):
8dc7a2
         try:
8dc7a2
             try:
8dc7a2
diff -up Python-3.4.2/Lib/test/test_traceback.py.ppc Python-3.4.2/Lib/test/test_traceback.py
8dc7a2
--- Python-3.4.2/Lib/test/test_traceback.py.ppc	2014-10-08 04:18:14.000000000 -0400
8dc7a2
+++ Python-3.4.2/Lib/test/test_traceback.py	2015-01-12 05:56:15.922833055 -0500
8dc7a2
@@ -314,6 +314,7 @@ class BaseExceptionReportingTests:
8dc7a2
         self.check_zero_div(blocks[0])
8dc7a2
         self.assertIn('inner_raise() # Marker', blocks[2])
8dc7a2
 
8dc7a2
+    @unittest.skip('rhbz#846849')
8dc7a2
     def test_context_suppression(self):
8dc7a2
         try:
8dc7a2
             try: