2014-01-29 13:33:01 +00:00
|
|
|
diff -up Python-2.7.6/Lib/test/test_openpty.py.tty-fail Python-2.7.6/Lib/test/test_openpty.py
|
|
|
|
--- Python-2.7.6/Lib/test/test_openpty.py.tty-fail 2014-01-29 14:31:43.761343267 +0100
|
|
|
|
+++ Python-2.7.6/Lib/test/test_openpty.py 2014-01-29 14:32:19.284090165 +0100
|
2011-09-10 11:55:07 +00:00
|
|
|
@@ -8,6 +8,7 @@ if not hasattr(os, "openpty"):
|
|
|
|
|
|
|
|
|
|
|
|
class OpenptyTest(unittest.TestCase):
|
|
|
|
+ @unittest._skipInRpmBuild('sometimes fails in Koji, possibly due to a mock issue (rhbz#714627)')
|
|
|
|
def test(self):
|
|
|
|
master, slave = os.openpty()
|
2014-01-29 13:33:01 +00:00
|
|
|
self.addCleanup(os.close, master)
|
|
|
|
diff -up Python-2.7.6/Lib/test/test_pty.py.tty-fail Python-2.7.6/Lib/test/test_pty.py
|
|
|
|
--- Python-2.7.6/Lib/test/test_pty.py.tty-fail 2013-11-10 08:36:40.000000000 +0100
|
|
|
|
+++ Python-2.7.6/Lib/test/test_pty.py 2014-01-29 14:31:43.761343267 +0100
|
|
|
|
@@ -111,6 +111,7 @@ class PtyTest(unittest.TestCase):
|
2011-09-10 11:55:07 +00:00
|
|
|
os.close(master_fd)
|
|
|
|
|
|
|
|
|
|
|
|
+ @unittest._skipInRpmBuild('sometimes fails in Koji, possibly due to a mock issue (rhbz#714627)')
|
|
|
|
def test_fork(self):
|
|
|
|
debug("calling pty.fork()")
|
|
|
|
pid, master_fd = pty.fork()
|