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
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
1c50b97d
Commit
1c50b97d
authored
Oct 15, 2011
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add an option for cleaning up only succeeding tests.
parent
511018bb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
12 deletions
+30
-12
runtests.py
runtests.py
+30
-12
No files found.
runtests.py
View file @
1c50b97d
...
...
@@ -285,8 +285,8 @@ class ErrorWriter(object):
class TestBuilder(object):
def __init__(self, rootdir, workdir, selectors, exclude_selectors, annotate,
cleanup_workdir, cleanup_sharedlibs,
with_pyregr, cython_only
,
languages, test_bugs, fork, language_level):
cleanup_workdir, cleanup_sharedlibs,
cleanup_failures
,
with_pyregr, cython_only,
languages, test_bugs, fork, language_level):
self.rootdir = rootdir
self.workdir = workdir
self.selectors = selectors
...
...
@@ -294,6 +294,7 @@ class TestBuilder(object):
self.annotate = annotate
self.cleanup_workdir = cleanup_workdir
self.cleanup_sharedlibs = cleanup_sharedlibs
self.cleanup_failures = cleanup_failures
self.with_pyregr = with_pyregr
self.cython_only = cython_only
self.languages = languages
...
...
@@ -410,6 +411,7 @@ class TestBuilder(object):
annotate=self.annotate,
cleanup_workdir=self.cleanup_workdir,
cleanup_sharedlibs=self.cleanup_sharedlibs,
cleanup_failures=self.cleanup_failures,
cython_only=self.cython_only,
fork=self.fork,
language_level=self.language_level,
...
...
@@ -418,8 +420,8 @@ class TestBuilder(object):
class CythonCompileTestCase(unittest.TestCase):
def __init__(self, test_directory, workdir, module, language='c',
expect_errors=False, annotate=False, cleanup_workdir=True,
cleanup_sharedlibs=True, c
ython_only=False, fork=Tru
e,
language_level=2, warning_errors=False):
cleanup_sharedlibs=True, c
leanup_failures=True, cython_only=Fals
e,
fork=True,
language_level=2, warning_errors=False):
self.test_directory = test_directory
self.workdir = workdir
self.module = module
...
...
@@ -428,6 +430,7 @@ class CythonCompileTestCase(unittest.TestCase):
self.annotate = annotate
self.cleanup_workdir = cleanup_workdir
self.cleanup_sharedlibs = cleanup_sharedlibs
self.cleanup_failures = cleanup_failures
self.cython_only = cython_only
self.fork = fork
self.language_level = language_level
...
...
@@ -461,16 +464,17 @@ class CythonCompileTestCase(unittest.TestCase):
del sys.modules[self.module]
except KeyError:
pass
cleanup_c_files = WITH_CYTHON and self.cleanup_workdir
cleanup_lib_files = self.cleanup_sharedlibs
cleanup = self.cleanup_failures or self.success
cleanup_c_files = WITH_CYTHON and self.cleanup_workdir and cleanup
cleanup_lib_files = self.cleanup_sharedlibs and cleanup
if os.path.exists(self.workdir):
for rmfile in os.listdir(self.workdir):
if not cleanup_c_files:
if rmfile[-2:] in ("
.
c
", "
.
h
") or rmfile[-4:] == "
.
cpp
":
if (rmfile[-2:] in ("
.
c
", "
.
h
") or
rmfile[-4:] == "
.
cpp
" or
rmfile.endswith("
.
html
")):
continue
if not cleanup_lib_files and rmfile.endswith("
.
so
") or rmfile.endswith("
.
dll
"):
continue
if self.annotate and rmfile.endswith("
.
html
"):
if not cleanup_lib_files and (rmfile.endswith("
.
so
") or rmfile.endswith("
.
dll
")):
continue
try:
rmfile = os.path.join(self.workdir, rmfile)
...
...
@@ -484,7 +488,9 @@ class CythonCompileTestCase(unittest.TestCase):
os.makedirs(self.workdir)
def runTest(self):
self.success = False
self.runCompileTest()
self.success = True
def runCompileTest(self):
self.compile(self.test_directory, self.module, self.workdir,
...
...
@@ -676,8 +682,13 @@ class CythonRunTestCase(CythonCompileTestCase):
try:
self.setUp()
try:
self.success = False
self.runCompileTest()
failures, errors = len(result.failures), len(result.errors)
self.run_tests(result)
if failures == len(result.failures) and errors == len(result.errors):
# No new errors...
self.success = True
finally:
check_thread_termination()
except Exception:
...
...
@@ -1031,6 +1042,7 @@ class EndToEndTest(unittest.TestCase):
os.chdir(self.old_dir)
def runTest(self):
self.success = False
commands = (self.commands
.replace("
CYTHON
", "
PYTHON
%
s
" % os.path.join(self.cython_root, 'cython.py'))
.replace("
PYTHON
", sys.executable))
...
...
@@ -1054,6 +1066,7 @@ class EndToEndTest(unittest.TestCase):
os.environ['PYTHONPATH'] = old_path
else:
del os.environ['PYTHONPATH']
self.success = True
# TODO: Support cython_freeze needed here as well.
...
...
@@ -1277,6 +1290,9 @@ def main():
parser.add_option("
--
no
-
cleanup
-
sharedlibs
", dest="
cleanup_sharedlibs
",
action="
store_false
", default=True,
help="
do
not
delete
the
generated
shared
libary
files
(
allows
manual
module
experimentation
)
")
parser.add_option("
--
no
-
cleanup
-
failures
", dest="
cleanup_failures
",
action="
store_false
", default=True,
help="
enable
--
no
-
cleanup
and
--
no
-
cleanup
-
sharedlibs
for
failed
tests
only
")
parser.add_option("
--
no
-
cython
", dest="
with_cython
",
action="
store_false
", default=True,
help="
do
not
run
the
Cython
compiler
,
only
the
C
compiler
")
...
...
@@ -1508,7 +1524,8 @@ def main():
if
options
.
filetests
and
languages
:
filetests
=
TestBuilder
(
ROOTDIR
,
WORKDIR
,
selectors
,
exclude_selectors
,
options
.
annotate_source
,
options
.
cleanup_workdir
,
options
.
cleanup_sharedlibs
,
options
.
pyregr
,
options
.
cleanup_sharedlibs
,
options
.
cleanup_failures
,
options
.
pyregr
,
options
.
cython_only
,
languages
,
test_bugs
,
options
.
fork
,
options
.
language_level
)
test_suite
.
addTest
(
filetests
.
build_suite
())
...
...
@@ -1518,7 +1535,8 @@ def main():
if
os
.
path
.
isdir
(
sys_pyregr_dir
):
filetests
=
TestBuilder
(
ROOTDIR
,
WORKDIR
,
selectors
,
exclude_selectors
,
options
.
annotate_source
,
options
.
cleanup_workdir
,
options
.
cleanup_sharedlibs
,
True
,
options
.
cleanup_sharedlibs
,
options
.
cleanup_failures
,
True
,
options
.
cython_only
,
languages
,
test_bugs
,
options
.
fork
,
sys
.
version_info
[
0
])
sys
.
stderr
.
write
(
"Including CPython regression tests in %s
\
n
"
%
sys_pyregr_dir
)
...
...
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