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
Gwenaël Samain
cython
Commits
e45c29b7
Commit
e45c29b7
authored
Apr 02, 2011
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use tags rather than directories for test types.
parent
5217fc52
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
22 deletions
+38
-22
runtests.py
runtests.py
+38
-22
No files found.
runtests.py
View file @
e45c29b7
...
@@ -119,6 +119,17 @@ COMPILER = None
...
@@ -119,6 +119,17 @@ COMPILER = None
INCLUDE_DIRS = [ d for d in os.getenv('
INCLUDE
', '').split(os.pathsep) if d ]
INCLUDE_DIRS = [ d for d in os.getenv('
INCLUDE
', '').split(os.pathsep) if d ]
CFLAGS = os.getenv('
CFLAGS
', '').split()
CFLAGS = os.getenv('
CFLAGS
', '').split()
def memoize(f):
uncomputed = object()
f._cache = {}
def func(*args):
res = f._cache.get(args, uncomputed)
if res is uncomputed:
res = f._cache[args] = f(*args)
return res
return func
@memoize
def parse_tags(filepath):
def parse_tags(filepath):
tags = defaultdict(list)
tags = defaultdict(list)
for line in open(filepath):
for line in open(filepath):
...
@@ -199,9 +210,6 @@ class TestBuilder(object):
...
@@ -199,9 +210,6 @@ class TestBuilder(object):
filenames
=
os
.
listdir
(
self
.
rootdir
)
filenames
=
os
.
listdir
(
self
.
rootdir
)
filenames
.
sort
()
filenames
.
sort
()
for
filename
in
filenames
:
for
filename
in
filenames
:
if
not
WITH_CYTHON
and
filename
==
"errors"
:
# we won't get any errors without running Cython
continue
path
=
os
.
path
.
join
(
self
.
rootdir
,
filename
)
path
=
os
.
path
.
join
(
self
.
rootdir
,
filename
)
if
os
.
path
.
isdir
(
path
)
and
filename
in
test_dirs
:
if
os
.
path
.
isdir
(
path
)
and
filename
in
test_dirs
:
if
filename
==
'pyregr'
and
not
self
.
with_pyregr
:
if
filename
==
'pyregr'
and
not
self
.
with_pyregr
:
...
@@ -220,47 +228,55 @@ class TestBuilder(object):
...
@@ -220,47 +228,55 @@ class TestBuilder(object):
if
not
os
.
path
.
exists
(
workdir
):
if
not
os
.
path
.
exists
(
workdir
):
os
.
makedirs
(
workdir
)
os
.
makedirs
(
workdir
)
expect_errors
=
(
context
==
'errors'
)
suite
=
unittest
.
TestSuite
()
suite
=
unittest
.
TestSuite
()
filenames
=
os
.
listdir
(
path
)
filenames
=
os
.
listdir
(
path
)
filenames
.
sort
()
filenames
.
sort
()
for
filename
in
filenames
:
for
filename
in
filenames
:
if
filename
.
endswith
(
".srctree"
):
filepath
=
os
.
path
.
join
(
path
,
filename
)
if
not
[
1
for
match
in
self
.
selectors
if
match
(
filename
)
]:
module
,
ext
=
os
.
path
.
splitext
(
filename
)
continue
if
ext
not
in
(
'.py'
,
'.pyx'
,
'.srctree'
):
if
self
.
exclude_selectors
:
if
[
1
for
match
in
self
.
exclude_selectors
if
match
(
filename
)]:
continue
suite
.
addTest
(
EndToEndTest
(
os
.
path
.
join
(
path
,
filename
),
workdir
,
self
.
cleanup_workdir
))
continue
continue
if
not
(
filename
.
endswith
(
".pyx"
)
or
filename
.
endswith
(
".py"
)):
if
filename
.
startswith
(
'.'
):
continue
continue
# certain emacs backup files
if
filename
.
startswith
(
'.'
):
continue
# certain emacs backup files
tags
=
parse_tags
(
filepath
)
if
context
==
'pyregr'
and
not
filename
.
startswith
(
'test_'
):
fqmodule
=
"%s.%s"
%
(
context
,
filename
)
continue
module
=
os
.
path
.
splitext
(
filename
)[
0
]
fqmodule
=
"%s.%s"
%
(
context
,
module
)
if
not
[
1
for
match
in
self
.
selectors
if
not
[
1
for
match
in
self
.
selectors
if
match
(
fqmodule
)
]:
if
match
(
fqmodule
)
]:
continue
continue
if
self
.
exclude_selectors
:
if
self
.
exclude_selectors
:
if
[
1
for
match
in
self
.
exclude_selectors
if
match
(
fqmodule
)]:
if
[
1
for
match
in
self
.
exclude_selectors
if
match
(
fqmodule
)]:
continue
continue
if
context
==
'pyregr'
:
mode
=
'run'
# default
if
tags
[
'mode'
]:
mode
=
tags
[
'mode'
][
0
]
elif
context
==
'pyregr'
:
mode
=
'pyregr'
if
ext
==
'.srctree'
:
suite
.
addTest
(
EndToEndTest
(
filepath
,
workdir
,
self
.
cleanup_workdir
))
continue
# Choose the test suite.
if
mode
==
'pyregr'
:
if
not
filename
.
startswith
(
'test_'
):
continue
test_class
=
CythonPyregrTestCase
test_class
=
CythonPyregrTestCase
elif
context
in
TEST_RUN_DIRS
:
elif
mode
==
'run'
:
if
module
.
startswith
(
"test_"
):
if
module
.
startswith
(
"test_"
):
test_class
=
CythonUnitTestCase
test_class
=
CythonUnitTestCase
else
:
else
:
test_class
=
CythonRunTestCase
test_class
=
CythonRunTestCase
else
:
else
:
test_class
=
CythonCompileTestCase
test_class
=
CythonCompileTestCase
for
test
in
self
.
build_tests
(
test_class
,
path
,
workdir
,
for
test
in
self
.
build_tests
(
test_class
,
path
,
workdir
,
module
,
expect_errors
):
module
,
mode
==
'error'
):
suite
.
addTest
(
test
)
suite
.
addTest
(
test
)
if
context
==
'run'
and
filename
.
endswith
(
'.py'
)
:
if
mode
==
'run'
and
ext
==
'.py'
:
# additionally test file in real Python
# additionally test file in real Python
suite
.
addTest
(
PureDoctestTestCase
(
module
,
os
.
path
.
join
(
path
,
filename
)))
suite
.
addTest
(
PureDoctestTestCase
(
module
,
os
.
path
.
join
(
path
,
filename
)))
return
suite
return
suite
def
build_tests
(
self
,
test_class
,
path
,
workdir
,
module
,
expect_errors
):
def
build_tests
(
self
,
test_class
,
path
,
workdir
,
module
,
expect_errors
):
...
...
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