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