Commit 38bdfaa1 authored by Neal Norwitz's avatar Neal Norwitz

Use -u urlfetch to run more tests

parent 64984a89
...@@ -202,7 +202,7 @@ if [ $err = 0 -a "$BUILD_DISABLED" != "yes" ]; then ...@@ -202,7 +202,7 @@ if [ $err = 0 -a "$BUILD_DISABLED" != "yes" ]; then
## make and run basic tests ## make and run basic tests
F=make-test.out F=make-test.out
start=`current_time` start=`current_time`
$PYTHON $REGRTEST_ARGS >& build/$F $PYTHON $REGRTEST_ARGS -u urlfetch >& build/$F
NUM_FAILURES=`count_failures build/$F` NUM_FAILURES=`count_failures build/$F`
place_summary_first build/$F place_summary_first build/$F
update_status "Testing basics ($NUM_FAILURES failures)" "$F" $start update_status "Testing basics ($NUM_FAILURES failures)" "$F" $start
...@@ -210,7 +210,7 @@ if [ $err = 0 -a "$BUILD_DISABLED" != "yes" ]; then ...@@ -210,7 +210,7 @@ if [ $err = 0 -a "$BUILD_DISABLED" != "yes" ]; then
F=make-test-opt.out F=make-test-opt.out
start=`current_time` start=`current_time`
$PYTHON -O $REGRTEST_ARGS >& build/$F $PYTHON -O $REGRTEST_ARGS -u urlfetch >& build/$F
NUM_FAILURES=`count_failures build/$F` NUM_FAILURES=`count_failures build/$F`
place_summary_first build/$F place_summary_first build/$F
update_status "Testing opt ($NUM_FAILURES failures)" "$F" $start update_status "Testing opt ($NUM_FAILURES failures)" "$F" $start
...@@ -221,7 +221,7 @@ if [ $err = 0 -a "$BUILD_DISABLED" != "yes" ]; then ...@@ -221,7 +221,7 @@ if [ $err = 0 -a "$BUILD_DISABLED" != "yes" ]; then
start=`current_time` start=`current_time`
## ensure that the reflog exists so the grep doesn't fail ## ensure that the reflog exists so the grep doesn't fail
touch $REFLOG touch $REFLOG
$PYTHON $REGRTEST_ARGS -R 4:3:$REFLOG -u network $LEAKY_SKIPS >& build/$F $PYTHON $REGRTEST_ARGS -R 4:3:$REFLOG -u network,urlfetch $LEAKY_SKIPS >& build/$F
LEAK_PAT="($LEAKY_TESTS|sum=0)" LEAK_PAT="($LEAKY_TESTS|sum=0)"
NUM_FAILURES=`egrep -vc "$LEAK_PAT" $REFLOG` NUM_FAILURES=`egrep -vc "$LEAK_PAT" $REFLOG`
place_summary_first build/$F place_summary_first build/$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