diff options
author | Gregory P. Smith <greg@krypto.org> | 2014-06-01 22:27:28 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2014-06-01 22:27:28 (GMT) |
commit | d04f699498bdb75804fa83a77c91809aa8c3298d (patch) | |
tree | 5fa6e568a02aa75c8e75084a17cdc2e418226f6c | |
parent | 8fed4deb44da3be1fb70b6b413580445066cb88b (diff) | |
download | cpython-d04f699498bdb75804fa83a77c91809aa8c3298d.zip cpython-d04f699498bdb75804fa83a77c91809aa8c3298d.tar.gz cpython-d04f699498bdb75804fa83a77c91809aa8c3298d.tar.bz2 |
Skip test_subprocess test_close_fds_when_max_fd_is_lowered on FreeBSD
when fdescfs is not mounted on /dev/fd.
-rw-r--r-- | Lib/test/test_subprocess.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py index eb5f49c..720025a 100644 --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -1927,6 +1927,9 @@ class POSIXProcessTestCase(BaseTestCase): self.assertIn(1, remaining_fds, "Subprocess failed") + @unittest.skipIf(sys.platform.startswith("freebsd") and + os.stat("/dev").st_dev == os.stat("/dev/fd").st_dev, + "Requires fdescfs mounted on /dev/fd on FreeBSD.") def test_close_fds_when_max_fd_is_lowered(self): """Confirm that issue21618 is fixed (may fail under valgrind).""" fd_status = support.findfile("fd_status.py", subdir="subprocessdata") |