Blame SOURCES/temporarily-disable-tests-requiring-SIGHUP.patch

8dc7a2
diff -up Python-3.4.0/Lib/test/test_asyncio/test_events.py.orig Python-3.4.0/Lib/test/test_asyncio/test_events.py
8dc7a2
--- Python-3.4.0/Lib/test/test_asyncio/test_events.py.orig	2014-04-15 13:18:49.696215288 +0200
8dc7a2
+++ Python-3.4.0/Lib/test/test_asyncio/test_events.py	2014-04-15 13:18:56.104258453 +0200
8dc7a2
@@ -1528,7 +1528,7 @@ class SubprocessTestsMixin:
8dc7a2
         self.check_terminated(proto.returncode)
8dc7a2
         transp.close()
8dc7a2
 
8dc7a2
-    @unittest.skipIf(sys.platform == 'win32', "Don't have SIGHUP")
8dc7a2
+    @unittest.skipIf(True, "Temporarily skipped (rhbz#1088233)")
8dc7a2
     def test_subprocess_send_signal(self):
8dc7a2
         prog = os.path.join(os.path.dirname(__file__), 'echo.py')
8dc7a2
 
8dc7a2
8dc7a2
diff -up Python-3.4.0/Lib/test/test_asyncio/test_subprocess.py.orig Python-3.4.0/Lib/test/test_asyncio/test_subprocess.py
8dc7a2
--- Python-3.4.0/Lib/test/test_asyncio/test_subprocess.py.orig	2014-04-17 12:03:32.777827520 +0200
8dc7a2
+++ Python-3.4.0/Lib/test/test_asyncio/test_subprocess.py	2014-04-17 12:04:37.614210481 +0200
8dc7a2
@@ -108,7 +108,7 @@ class SubprocessMixin:
8dc7a2
         else:
8dc7a2
             self.assertEqual(-signal.SIGTERM, returncode)
8dc7a2
 
8dc7a2
-    @unittest.skipIf(sys.platform == 'win32', "Don't have SIGHUP")
8dc7a2
+    @unittest.skipIf(True, "Temporarily skipped (rhbz#1088233)")
8dc7a2
     def test_send_signal(self):
8dc7a2
         code = 'import time; print("sleeping", flush=True); time.sleep(3600)'
8dc7a2
         args = [sys.executable, '-c', code]