X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=test%2Ftestlib.sh;h=75b60a792a21598c4c6f272bf71c03c625aab237;hb=ca989c0c8b19901cbd7664a9d2b42aa85c9c176e;hp=e65127d6acf9bd3b20779ad9a30b98195aedcf50;hpb=05a7f0b2fb07f8ee7752604a2a87b85f2430aaa3;p=tinc diff --git a/test/testlib.sh b/test/testlib.sh index e65127d6..75b60a79 100644 --- a/test/testlib.sh +++ b/test/testlib.sh @@ -5,16 +5,14 @@ tincd=../src/tincd tinc=../src/tinc sptps_test=../src/sptps_test +sptps_keypair=../src/sptps_keypair # Test directories -d1=$PWD/$_.1 -d2=$PWD/$_.2 -d3=$PWD/$_.3 - -# Remove test directories - -rm -rf $d1 $d2 $d3 +scriptname=`basename $0` +d1=$PWD/$scriptname.1 +d2=$PWD/$scriptname.2 +d3=$PWD/$scriptname.3 # Default arguments for both tinc and tincd @@ -25,8 +23,18 @@ c3="--config=$d3 --pidfile=$d3/pid" # Arguments when running tincd r1="--logfile=$d1/log -d5" -r2="--logfile=$d1/log -d5" -r3="--logfile=$d1/log -d5" +r2="--logfile=$d2/log -d5" +r3="--logfile=$d3/log -d5" + +# Check for leftover tinc daemons + +[ -f $d1/pid ] && $tinc $c1 stop +[ -f $d2/pid ] && $tinc $c2 stop +[ -f $d3/pid ] && $tinc $c3 stop + +# Remove test directories + +rm -rf $d1 $d2 $d3 # Exit on errors, log all commands being executed