summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2019-02-01 10:40:26 (GMT)
committerGitHub <noreply@github.com>2019-02-01 10:40:26 (GMT)
commit1e39b83f24ffade3e0ca1a8004b461354f64ae08 (patch)
tree3c037b3d1487dbb2791cf5af48e004c919db4a75 /Lib
parent80c5dfe74b4402d0a220c9227f262ec6fde1d7fc (diff)
downloadcpython-1e39b83f24ffade3e0ca1a8004b461354f64ae08.zip
cpython-1e39b83f24ffade3e0ca1a8004b461354f64ae08.tar.gz
cpython-1e39b83f24ffade3e0ca1a8004b461354f64ae08.tar.bz2
bpo-35537: Skip test_start_new_session() of posix_spawn (GH-11718)
The test fails. Skip the test until a fix can be found.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_posix.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_posix.py b/Lib/test/test_posix.py
index bc7a2d6..e980dd0 100644
--- a/Lib/test/test_posix.py
+++ b/Lib/test/test_posix.py
@@ -1624,6 +1624,8 @@ class _PosixSpawnMixin:
os.environ, setsigmask=[signal.NSIG,
signal.NSIG+1])
+ @unittest.skipIf(True,
+ "FIXME: bpo-35537: test fails is setsid is supported")
def test_start_new_session(self):
# For code coverage of calling setsid(). We don't care if we get an
# EPERM error from it depending on the test execution environment, that