X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Fgns%2Ftest_gns_dht_lookup.sh;h=a6e4acc77103451a2b452a2e250d1eab3d392125;hb=ecfab268bb34efb1305bf5b7894db47cd916a6a7;hp=7d76d9c5253aa8060ac7ef988c9401658b0f8148;hpb=cc860cd0446b963f8ca0b6866bf0042b85d6fe2e;p=oweals%2Fgnunet.git diff --git a/src/gns/test_gns_dht_lookup.sh b/src/gns/test_gns_dht_lookup.sh index 7d76d9c52..a6e4acc77 100755 --- a/src/gns/test_gns_dht_lookup.sh +++ b/src/gns/test_gns_dht_lookup.sh @@ -2,6 +2,18 @@ trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT which timeout &> /dev/null && DO_TIMEOUT="timeout 30" +LOCATION=$(which gnunet-config) +if [ -z $LOCATION ] +then + LOCATION="gnunet-config" +fi +$LOCATION --version 1> /dev/null +if test $? != 0 +then + echo "GNUnet command line tools cannot be found, check environmental variables PATH and GNUNET_PREFIX" + exit 77 +fi + TEST_IP="127.0.0.1" gnunet-arm -s -c test_gns_lookup.conf gnunet-identity -C delegatedego -c test_gns_lookup.conf @@ -15,6 +27,7 @@ gnunet-namestore -z delegatedego -d -n www -t A -V $TEST_IP -e never -c test_gn RES_IP=`$DO_TIMEOUT gnunet-gns --raw -z testego -u www.b.gnu -t A -c test_gns_lookup.conf` gnunet-namestore -z testego -d -n b -t PKEY -V $DELEGATED_PKEY -e never -c test_gns_lookup.conf gnunet-arm -e -c test_gns_lookup.conf +rm -rf /tmp/test-gnunet-gns-peer-1/ if [ "$RES_IP" == "$TEST_IP" ] then