Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
052a02be
Commit
052a02be
authored
Aug 17, 2010
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add tests for mknod() and mkfifo() #9569
parent
82c48852
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
0 deletions
+23
-0
Lib/test/test_posix.py
Lib/test/test_posix.py
+23
-0
No files found.
Lib/test/test_posix.py
View file @
052a02be
...
...
@@ -11,6 +11,7 @@ import time
import
os
import
pwd
import
shutil
import
stat
import
unittest
import
warnings
...
...
@@ -199,6 +200,28 @@ class PosixTester(unittest.TestCase):
if
hasattr
(
posix
,
'stat'
):
self
.
assertTrue
(
posix
.
stat
(
support
.
TESTFN
))
@
unittest
.
skipUnless
(
hasattr
(
posix
,
'mkfifo'
),
"don't have mkfifo()"
)
def
test_mkfifo
(
self
):
support
.
unlink
(
support
.
TESTFN
)
posix
.
mkfifo
(
support
.
TESTFN
,
stat
.
S_IRUSR
|
stat
.
S_IWUSR
)
self
.
assertTrue
(
stat
.
S_ISFIFO
(
posix
.
stat
(
support
.
TESTFN
).
st_mode
))
@
unittest
.
skipUnless
(
hasattr
(
posix
,
'mknod'
)
and
hasattr
(
stat
,
'S_IFIFO'
),
"don't have mknod()/S_IFIFO"
)
def
test_mknod
(
self
):
# Test using mknod() to create a FIFO (the only use specified
# by POSIX).
support
.
unlink
(
support
.
TESTFN
)
mode
=
stat
.
S_IFIFO
|
stat
.
S_IRUSR
|
stat
.
S_IWUSR
try
:
posix
.
mknod
(
support
.
TESTFN
,
mode
,
0
)
except
OSError
as
e
:
# Some old systems don't allow unprivileged users to use
# mknod(), or only support creating device nodes.
self
.
assertIn
(
e
.
errno
,
(
errno
.
EPERM
,
errno
.
EINVAL
))
else
:
self
.
assertTrue
(
stat
.
S_ISFIFO
(
posix
.
stat
(
support
.
TESTFN
).
st_mode
))
def
_test_all_chown_common
(
self
,
chown_func
,
first_param
):
"""Common code for chown, fchown and lchown tests."""
if
os
.
getuid
()
==
0
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment