]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-35537: Skip test_start_new_session() of posix_spawn (GH-11718)
authorVictor Stinner <vstinner@redhat.com>
Fri, 1 Feb 2019 10:40:26 +0000 (11:40 +0100)
committerGitHub <noreply@github.com>
Fri, 1 Feb 2019 10:40:26 +0000 (11:40 +0100)
The test fails. Skip the test until a fix can be found.

Lib/test/test_posix.py

index bc7a2d6fb3dc8a946407028b80867cd88e77d906..e980dd014cd8af549909ee23d3bf71040e48df8e 100644 (file)
@@ -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