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
eabfb5b1
Commit
eabfb5b1
authored
Jun 20, 2011
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Plain Diff
merge heads
parents
0c103627
d6284963
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
50 additions
and
74 deletions
+50
-74
Lib/test/test_signal.py
Lib/test/test_signal.py
+50
-74
No files found.
Lib/test/test_signal.py
View file @
eabfb5b1
...
@@ -9,7 +9,7 @@ import struct
...
@@ -9,7 +9,7 @@ import struct
import
subprocess
import
subprocess
import
traceback
import
traceback
import
sys
,
os
,
time
,
errno
import
sys
,
os
,
time
,
errno
from
test.script_helper
import
assert_python_ok
from
test.script_helper
import
assert_python_ok
,
spawn_python
try
:
try
:
import
threading
import
threading
except
ImportError
:
except
ImportError
:
...
@@ -314,100 +314,76 @@ class WakeupSignalTests(unittest.TestCase):
...
@@ -314,100 +314,76 @@ class WakeupSignalTests(unittest.TestCase):
@
unittest
.
skipIf
(
sys
.
platform
==
"win32"
,
"Not valid on Windows"
)
@
unittest
.
skipIf
(
sys
.
platform
==
"win32"
,
"Not valid on Windows"
)
class
SiginterruptTest
(
unittest
.
TestCase
):
class
SiginterruptTest
(
unittest
.
TestCase
):
def
setUp
(
self
):
def
readpipe_interrupted
(
self
,
interrupt
):
"""Install a no-op signal handler that can be set to allow
interrupts or not, and arrange for the original signal handler to be
re-installed when the test is finished.
"""
self
.
signum
=
signal
.
SIGUSR1
oldhandler
=
signal
.
signal
(
self
.
signum
,
lambda
x
,
y
:
None
)
self
.
addCleanup
(
signal
.
signal
,
self
.
signum
,
oldhandler
)
def
readpipe_interrupted
(
self
):
"""Perform a read during which a signal will arrive. Return True if the
"""Perform a read during which a signal will arrive. Return True if the
read is interrupted by the signal and raises an exception. Return False
read is interrupted by the signal and raises an exception. Return False
if it returns normally.
if it returns normally.
"""
"""
# Create a pipe that can be used for the read. Also clean it up
# use a subprocess to have only one thread, to have a timeout on the
# when the test is over, since nothing else will (but see below for
# blocking read and to not touch signal handling in this process
# the write end).
code
=
"""if 1:
import errno
import os
import signal
import sys
interrupt = %r
r, w = os.pipe()
r, w = os.pipe()
self
.
addCleanup
(
os
.
close
,
r
)
# Create another process which can send a signal to this one to try
def handler(signum, frame):
# to interrupt the read.
pass
ppid
=
os
.
getpid
()
pid
=
os
.
fork
()
if
pid
==
0
:
signal.signal(signal.SIGALRM, handler)
# Child code: sleep to give the parent enough time to enter the
if interrupt is not None:
# read() call (there's a race here, but it's really tricky to
signal.siginterrupt(signal.SIGALRM, interrupt)
# eliminate it); then signal the parent process. Also, sleep
# again to make it likely that the signal is delivered to the
# run the test twice
# parent process before the child exits. If the child exits
for loop in range(2):
# first, the write end of the pipe will be closed and the test
# send a SIGALRM in a second (during the read)
# is invalid.
signal.alarm(1)
try
:
time
.
sleep
(
0.2
)
os
.
kill
(
ppid
,
self
.
signum
)
time
.
sleep
(
0.2
)
finally
:
# No matter what, just exit as fast as possible now.
exit_subprocess
()
else
:
# Parent code.
# Make sure the child is eventually reaped, else it'll be a
# zombie for the rest of the test suite run.
self
.
addCleanup
(
os
.
waitpid
,
pid
,
0
)
# Close the write end of the pipe. The child has a copy, so
# it's not really closed until the child exits. We need it to
# close when the child exits so that in the non-interrupt case
# the read eventually completes, otherwise we could just close
# it *after* the test.
os
.
close
(
w
)
# Try the read and report whether it is interrupted or not to
# the caller.
try:
try:
d
=
os
.
read
(
r
,
1
)
# blocking call: read from a pipe without data
return
False
os.read(r, 1)
except OSError as err:
except OSError as err:
if err.errno != errno.EINTR:
if err.errno != errno.EINTR:
raise
raise
return
True
else:
sys.exit(2)
sys.exit(3)
"""
%
(
interrupt
,)
with
spawn_python
(
'-c'
,
code
)
as
process
:
try
:
stdout
,
stderr
=
process
.
communicate
(
timeout
=
3.0
)
except
subprocess
.
TimeoutExpired
:
process
.
kill
()
return
False
else
:
exitcode
=
process
.
wait
()
if
exitcode
not
in
(
2
,
3
):
raise
Exception
(
"Child error (exit code %s): %s"
%
(
exitcode
,
stdout
))
return
(
exitcode
==
3
)
def
test_without_siginterrupt
(
self
):
def
test_without_siginterrupt
(
self
):
# If a signal handler is installed and siginterrupt is not called
# If a signal handler is installed and siginterrupt is not called
# at all, when that signal arrives, it interrupts a syscall that's in
# at all, when that signal arrives, it interrupts a syscall that's in
# progress.
# progress.
i
=
self
.
readpipe_interrupted
()
interrupted
=
self
.
readpipe_interrupted
(
None
)
self
.
assertTrue
(
i
)
self
.
assertTrue
(
interrupted
)
# Arrival of the signal shouldn't have changed anything.
i
=
self
.
readpipe_interrupted
()
self
.
assertTrue
(
i
)
def
test_siginterrupt_on
(
self
):
def
test_siginterrupt_on
(
self
):
# If a signal handler is installed and siginterrupt is called with
# If a signal handler is installed and siginterrupt is called with
# a true value for the second argument, when that signal arrives, it
# a true value for the second argument, when that signal arrives, it
# interrupts a syscall that's in progress.
# interrupts a syscall that's in progress.
signal
.
siginterrupt
(
self
.
signum
,
1
)
interrupted
=
self
.
readpipe_interrupted
(
True
)
i
=
self
.
readpipe_interrupted
()
self
.
assertTrue
(
interrupted
)
self
.
assertTrue
(
i
)
# Arrival of the signal shouldn't have changed anything.
i
=
self
.
readpipe_interrupted
()
self
.
assertTrue
(
i
)
def
test_siginterrupt_off
(
self
):
def
test_siginterrupt_off
(
self
):
# If a signal handler is installed and siginterrupt is called with
# If a signal handler is installed and siginterrupt is called with
# a false value for the second argument, when that signal arrives, it
# a false value for the second argument, when that signal arrives, it
# does not interrupt a syscall that's in progress.
# does not interrupt a syscall that's in progress.
signal
.
siginterrupt
(
self
.
signum
,
0
)
interrupted
=
self
.
readpipe_interrupted
(
False
)
i
=
self
.
readpipe_interrupted
()
self
.
assertFalse
(
interrupted
)
self
.
assertFalse
(
i
)
# Arrival of the signal shouldn't have changed anything.
i
=
self
.
readpipe_interrupted
()
self
.
assertFalse
(
i
)
@
unittest
.
skipIf
(
sys
.
platform
==
"win32"
,
"Not valid on Windows"
)
@
unittest
.
skipIf
(
sys
.
platform
==
"win32"
,
"Not valid on Windows"
)
...
...
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