-fix check for DANE and ftbfs
[oweals/gnunet.git] / src / gns / test_gnunet_gns.sh
index 2c15597651af78718984029ace06988151e9d966..749d80b84467a5d57e74ff888ab4cc00a7243cd0 100755 (executable)
@@ -1,10 +1,23 @@
 #!/bin/bash
+
+LOCATION=$(which gnunet-config)
+if [ -z $LOCATION ]
+then
+  LOCATION="gnunet-config"
+fi
+$LOCATION --version
+if test $? != 0
+then
+       echo "GNUnet command line tools cannot be found, check environmental variables PATH and GNUNET_PREFIX" 
+       exit 77
+fi
+
 trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT
 ME=`whoami`
 if [ "$ME" != "root" ]
 then
   echo "This test only works if run as root.  Skipping."
-  exit 0
+  exit 77
 fi
 export PATH=".:$PATH"
 gnunet-service-gns -c gns.conf &