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

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