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
b78b4893
Commit
b78b4893
authored
Sep 28, 2010
by
R. David Murray
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#9628: fix runtests.sh -x option so more than one test can be excluded.
parent
c8f01964
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
Misc/NEWS
Misc/NEWS
+2
-0
runtests.sh
runtests.sh
+1
-1
No files found.
Misc/NEWS
View file @
b78b4893
...
...
@@ -260,6 +260,8 @@ Tools/Demos
Tests
-----
- Issue #9628: fix runtests.sh -x option so more than one test can be excluded.
- Issue #9899: Fix test_tkinter.test_font on various platforms. Patch by
Ned Deily.
...
...
runtests.sh
View file @
b78b4893
...
...
@@ -55,7 +55,7 @@ case "$#$EXCEPT" in
TESTS
=
`
(
cd
Lib/test
;
ls
test_
*
.py |
sed
's/\.py//'
)
`
;;
*
-x
)
PAT
=
"^(
`
echo
$@
|
sed
's/\.py//
'
|
sed
's/ /|/
'
`
)$"
PAT
=
"^(
`
echo
$@
|
sed
's/\.py//
g'
|
sed
's/ /|/g
'
`
)$"
TESTS
=
`
(
cd
Lib/test
;
ls
test_
*
.py |
sed
's/\.py//'
| egrep
-v
"
$PAT
"
)
`
;;
*
)
...
...
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