mirror of
https://github.com/python/cpython.git
synced 2026-01-06 15:32:22 +00:00
Don't redirect stdout for test_curses.
Kill some dead (commented-out) code.
This commit is contained in:
parent
e5aeaad0ca
commit
97a7f1e420
1 changed files with 4 additions and 3 deletions
|
|
@ -48,7 +48,10 @@ esac
|
|||
for T in $TESTS
|
||||
do
|
||||
echo -n $T
|
||||
if $PYTHON Lib/test/regrtest.py $UFLAG $T >OUT/$T.out 2>&1
|
||||
if case $T in
|
||||
*curses*) echo; $PYTHON Lib/test/regrtest.py $UFLAG $T 2>OUT/$T.out;;
|
||||
*) $PYTHON Lib/test/regrtest.py $UFLAG $T >OUT/$T.out 2>&1;;
|
||||
esac
|
||||
then
|
||||
if grep -q "1 test skipped:" OUT/$T.out
|
||||
then
|
||||
|
|
@ -61,7 +64,5 @@ do
|
|||
else
|
||||
echo " BAD"
|
||||
echo $T >>BAD
|
||||
##echo "--------- Re-running test in verbose mode ---------" >>OUT/$T.out
|
||||
##$PYTHON Lib/test/regrtest.py -v $UFLAG $T >>OUT/$T.out 2>&1
|
||||
fi
|
||||
done
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue