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