Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cython
Commits
f404ba74
Commit
f404ba74
authored
Nov 17, 2009
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix forking in runtests.py (ticket #449).
parent
c62e213a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
13 deletions
+22
-13
runtests.py
runtests.py
+22
-13
No files found.
runtests.py
View file @
f404ba74
...
...
@@ -9,6 +9,7 @@ import shutil
import
unittest
import
doctest
import
operator
import
tempfile
try
:
from
StringIO
import
StringIO
except
ImportError
:
...
...
@@ -401,12 +402,12 @@ class CythonRunTestCase(CythonCompileTestCase):
return
# fork to make sure we do not keep the tested module loaded
input
,
output
=
os
.
pipe
()
result_handle
,
result_file
=
tempfile
.
mkstemp
()
child_id
=
os
.
fork
()
if
not
child_id
:
result_code
=
0
try
:
output
=
os
.
fdopen
(
output
,
'wb'
)
output
=
os
.
fdopen
(
result_handle
,
'wb'
)
tests
=
None
try
:
partial_result
=
PartialTestResult
(
result
)
...
...
@@ -423,14 +424,18 @@ class CythonRunTestCase(CythonCompileTestCase):
partial_result
.
addError
(
tests
,
sys
.
exc_info
())
result_code
=
1
pickle
.
dump
(
partial_result
.
data
(),
output
)
except
:
import
traceback
traceback
.
print_exc
()
finally
:
try
:
output
.
close
()
except
:
pass
os
.
_exit
(
result_code
)
try
:
cid
,
result_code
=
os
.
waitpid
(
child_id
,
0
)
if
result_code
in
(
0
,
1
):
input
=
os
.
fdopen
(
input
,
'rb'
)
input
=
open
(
result_file
,
'rb'
)
try
:
PartialTestResult
.
join_results
(
result
,
pickle
.
load
(
input
))
finally
:
...
...
@@ -438,14 +443,18 @@ class CythonRunTestCase(CythonCompileTestCase):
if
result_code
:
raise
Exception
(
"Tests in module '%s' exited with status %d"
%
(
module_name
,
result_code
>>
8
))
finally
:
os
.
unlink
(
result_file
)
is_private_field
=
re
.
compile
(
'^_[^_]'
).
match
class
_FakeClass
(
object
):
def
__init__
(
self
,
**
kwargs
):
self
.
shortDescription
=
lambda
x
:
kwargs
.
get
(
'module_name'
)
self
.
_shortDescription
=
kwargs
.
get
(
'module_name'
)
self
.
__dict__
.
update
(
kwargs
)
def
shortDescription
(
self
):
return
self
.
_shortDescription
try
:
# Py2.7+ and Py3.2+
from
unittest.runner
import
_TextTestResult
...
...
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