Skip to content

Commit

Permalink
Don't redirect stdout for test_curses.
Browse files Browse the repository at this point in the history
Kill some dead (commented-out) code.
  • Loading branch information
gvanrossum committed Jul 26, 2007
1 parent e5aeaad commit 97a7f1e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions runtests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit 97a7f1e

Please sign in to comment.