diff options
Diffstat (limited to 'testdata/fwd_waitudp.tdir/fwd_waitudp.test')
-rw-r--r-- | testdata/fwd_waitudp.tdir/fwd_waitudp.test | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/testdata/fwd_waitudp.tdir/fwd_waitudp.test b/testdata/fwd_waitudp.tdir/fwd_waitudp.test index 1247885348ac..5158bd065232 100644 --- a/testdata/fwd_waitudp.tdir/fwd_waitudp.test +++ b/testdata/fwd_waitudp.tdir/fwd_waitudp.test @@ -11,7 +11,7 @@ PRE="../.." # so that all three queries get timeouts during the later test. # #echo "> dig www1.example.com." -#dig @localhost -p $UNBOUND_PORT www1.example.com. | tee outfile +#dig @127.0.0.1 -p $UNBOUND_PORT www1.example.com. | tee outfile #echo "> cat logfiles" #cat fwd.log #cat unbound.log @@ -24,11 +24,11 @@ PRE="../.." #fi echo "> do three queries" -dig @localhost -p $UNBOUND_PORT www1.example.com. >outfile1 & +dig @127.0.0.1 -p $UNBOUND_PORT www1.example.com. >outfile1 & digpid1=$! -dig @localhost -p $UNBOUND_PORT www2.example.com. >outfile2 & +dig @127.0.0.1 -p $UNBOUND_PORT www2.example.com. >outfile2 & digpid2=$! -dig @localhost -p $UNBOUND_PORT www3.example.com. >outfile3 & +dig @127.0.0.1 -p $UNBOUND_PORT www3.example.com. >outfile3 & digpid3=$! sleep 15 kill -9 $digpid1 |