Commit d19a4d47 authored by Neal Norwitz's avatar Neal Norwitz

* Change tabs to spaces

* Enable network tests when hunting for leaks
* Disable curses and audio tests properly when running -u all
parent 6bc6ed8b
......@@ -150,7 +150,7 @@ if [ $err = 0 ]; then
## run the tests looking for leaks
F=make-test-refleak.out
start=`current_time`
./python ./Lib/test/regrtest.py -R 4:3:$REFLOG >& build/$F
./python ./Lib/test/regrtest.py -R 4:3:$REFLOG -u network >& build/$F
NUM_FAILURES=`grep -ic leak $REFLOG`
update_status "Testing refleaks ($NUM_FAILURES failures)" "$F" $start
mail_on_failure "refleak" $REFLOG
......@@ -160,7 +160,7 @@ if [ $err = 0 ]; then
start=`current_time`
## skip curses when running from cron since there's no terminal
## skip sound since it's not setup on the PSF box (/dev/dsp)
./python -E -tt ./Lib/test/regrtest.py -uall -x test_curses,test_linuxaudiodev,test_ossaudiodev >& build/$F
./python -E -tt ./Lib/test/regrtest.py -uall -x test_curses test_linuxaudiodev test_ossaudiodev >& build/$F
NUM_FAILURES=`grep -ic fail build/$F`
update_status "Testing all except curses and sound ($NUM_FAILURES failures)" "$F" $start
mail_on_failure "all" buiild/$F
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment