summaryrefslogtreecommitdiffstats
path: root/runtests.sh
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2010-09-28 22:34:03 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2010-09-28 22:34:03 (GMT)
commita0a89b90062fb1fb8938a3b3785a7bef5f23a9db (patch)
treeb6f0179dd188a35e689893b86533984c6d8ea0ba /runtests.sh
parent6db43fdb3bbe3fc470f51f3674818f925b8f130c (diff)
downloadcpython-a0a89b90062fb1fb8938a3b3785a7bef5f23a9db.zip
cpython-a0a89b90062fb1fb8938a3b3785a7bef5f23a9db.tar.gz
cpython-a0a89b90062fb1fb8938a3b3785a7bef5f23a9db.tar.bz2
Merged revisions 85078 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85078 | r.david.murray | 2010-09-28 18:25:18 -0400 (Tue, 28 Sep 2010) | 2 lines #9628: fix runtests.sh -x option so more than one test can be excluded. ........
Diffstat (limited to 'runtests.sh')
-rwxr-xr-xruntests.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtests.sh b/runtests.sh
index 2d3cfc8..d7b4646 100755
--- a/runtests.sh
+++ b/runtests.sh
@@ -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")`
;;
*)