We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 900187d commit f6c2f6cCopy full SHA for f6c2f6c
Lib/test/test_glob.py
@@ -344,6 +344,9 @@ def test_glob_non_directory(self):
344
eq(self.rglob('nonexistent', '*'), [])
345
eq(self.rglob('nonexistent', '**'), [])
346
347
+ @unittest.skipUnless(hasattr(os, "mkfifo"), 'requires os.mkfifo()')
348
+ @unittest.skipIf(sys.platform == "vxworks",
349
+ "fifo requires special path on VxWorks")
350
def test_glob_named_pipe(self):
351
path = os.path.join(self.tempdir, 'mypipe')
352
os.mkfifo(path)
0 commit comments