summaryrefslogtreecommitdiffstats
path: root/runtests.sh
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-06-08 00:07:57 (GMT)
committerGuido van Rossum <guido@python.org>2007-06-08 00:07:57 (GMT)
commit2bf7138bb744cbb10f71ed5de2bb977c362a2052 (patch)
tree23c45ca069e984dd0017621772004c06986a10dc /runtests.sh
parent7cad4f3d02861d143c0d5d71a93eab81972588e4 (diff)
downloadcpython-2bf7138bb744cbb10f71ed5de2bb977c362a2052.zip
cpython-2bf7138bb744cbb10f71ed5de2bb977c362a2052.tar.gz
cpython-2bf7138bb744cbb10f71ed5de2bb977c362a2052.tar.bz2
Make test_socket work.
Don't exclude test_socket from the tests to run.
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 5a03b0a..c90460e 100755
--- a/runtests.sh
+++ b/runtests.sh
@@ -27,7 +27,7 @@ mkdir -p OUT
# Compute the list of tests to run.
case $# in
0)
- TESTS=`(cd Lib/test; ls test_*.py | sed 's/\.py//' | grep -v test_socket)`
+ TESTS=`(cd Lib/test; ls test_*.py | sed 's/\.py//')`
;;
*)
TESTS="$@"