Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5aeaad commit 97a7f1eCopy full SHA for 97a7f1e
1 file changed
runtests.sh
@@ -48,7 +48,10 @@ esac
48
for T in $TESTS
49
do
50
echo -n $T
51
- if $PYTHON Lib/test/regrtest.py $UFLAG $T >OUT/$T.out 2>&1
+ if case $T in
52
+ *curses*) echo; $PYTHON Lib/test/regrtest.py $UFLAG $T 2>OUT/$T.out;;
53
+ *) $PYTHON Lib/test/regrtest.py $UFLAG $T >OUT/$T.out 2>&1;;
54
+ esac
55
then
56
if grep -q "1 test skipped:" OUT/$T.out
57
@@ -61,7 +64,5 @@ do
61
64
else
62
65
echo " BAD"
63
66
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
67
fi
68
done
0 commit comments