Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8f0196 commit b78b489Copy full SHA for b78b489
2 files changed
Misc/NEWS
@@ -260,6 +260,8 @@ Tools/Demos
260
Tests
261
-----
262
263
+- Issue #9628: fix runtests.sh -x option so more than one test can be excluded.
264
+
265
- Issue #9899: Fix test_tkinter.test_font on various platforms. Patch by
266
Ned Deily.
267
runtests.sh
@@ -55,7 +55,7 @@ case "$#$EXCEPT" in
55
TESTS=`(cd Lib/test; ls test_*.py | sed 's/\.py//')`
56
;;
57
*-x)
58
- PAT="^(`echo $@ | sed 's/\.py//' | sed 's/ /|/'`)$"
+ PAT="^(`echo $@ | sed 's/\.py//g' | sed 's/ /|/g'`)$"
59
TESTS=`(cd Lib/test; ls test_*.py | sed 's/\.py//' | egrep -v "$PAT")`
60
61
*)
0 commit comments