diff options
author | Guido van Rossum <guido@python.org> | 2007-06-12 00:28:30 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-06-12 00:28:30 (GMT) |
commit | 5397039504fa45f7a41b8afe5f0cb485ad4dbcf1 (patch) | |
tree | e5b8d338ccca2ffe33bd31d793d31536997d463d /runtests.sh | |
parent | 0aa35f8709fa5c182254487c609ac4a3ba929ba6 (diff) | |
download | cpython-5397039504fa45f7a41b8afe5f0cb485ad4dbcf1.zip cpython-5397039504fa45f7a41b8afe5f0cb485ad4dbcf1.tar.gz cpython-5397039504fa45f7a41b8afe5f0cb485ad4dbcf1.tar.bz2 |
Minimal changes to make the "freeze" tool work again.
There are other issues left, but these were basics (e.g. keys().sort()).
Diffstat (limited to 'runtests.sh')
-rwxr-xr-x | runtests.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/runtests.sh b/runtests.sh index c90460e..7372d8e 100755 --- a/runtests.sh +++ b/runtests.sh @@ -24,6 +24,9 @@ mkdir -p OUT >BAD >SKIPPED +# The -uall flag (edit this file to change). +UALL="-uall" + # Compute the list of tests to run. case $# in 0) @@ -38,7 +41,7 @@ esac for T in $TESTS do echo -n $T - if $PYTHON Lib/test/regrtest.py -uall $T >OUT/$T.out 2>&1 + if $PYTHON Lib/test/regrtest.py $UALL $T >OUT/$T.out 2>&1 then if grep -q "1 test skipped:" OUT/$T.out then @@ -51,5 +54,7 @@ do else echo " BAD" echo $T >>BAD + echo "---------- Re-running test in verbose mode ----------" >>OUT/$T + $PYTHON Lib/test/regrtest.py -v $UALL $T >>OUT/$T.out 2>&1 fi done |