- usage of short hashes
[oweals/gnunet.git] / src / arm / test_gnunet_arm.sh
index 00c31a57376ff10b1d378dbac490fdee8b217b1a..4a5b7266dbed9e1365f29177fae6d62d203d9f8b 100755 (executable)
@@ -1,9 +1,7 @@
 #!/bin/sh
 
-rm -rf /tmp/test-gnunetd-arm/
 exe="./gnunet-arm -c test_arm_api_data.conf"
-base=/tmp/gnunet-test-arm
-out=/tmp/test-gnunetd-arm.log
+out=`mktemp /tmp/test-gnunet-arm-logXXXXXXXX`
 #DEBUG="-L DEBUG"
 
 
@@ -17,7 +15,7 @@ fi
 echo "PASS"
 
 # ----------------------------------------------------------------------------------
-echo -n "TEST: Start ARM... "
+echo -n "TEST: Start ARM..."
 
 if ! $exe $DEBUG -s > $out ; then
   echo "FAIL: error running $exe"
@@ -41,28 +39,6 @@ fi
 sleep 1
 echo "PASS"
 
-# ----------------------------------------------------------------------------------
-echo -n "TEST: Test -t on running service... "
-if ! $exe $DEBUG -t resolver > $base.out; then
-    echo "FAIL: error running $exe"
-    exit 1
-fi
-LINES=`cat $base.out | grep resolver | grep not | wc -l`
-if test $LINES -ne 0; then
-  echo "FAIL: unexpected output:"
-  cat $base.out
-  $exe -e
-  exit 1
-fi
-LINES=`cat $base.out | grep resolver | grep -v not | wc -l`
-if test $LINES -ne 1; then
-  echo "FAIL: unexpected output"
-  cat $base.out
-  $exe -e
-  exit 1
-fi
-echo "PASS"
-
 # ----------------------------------------------------------------------------------
 echo -n "TEST: Stop a service... "
 
@@ -74,23 +50,6 @@ fi
 sleep 1
 echo "PASS"
 
-# ----------------------------------------------------------------------------------
-echo -n "TEST: Test -t on stopped service... "
-if ! $exe $DEBUG -t resolver > $base.out; then
-  echo "FAIL: error running $exe"
-  cat $base.out
-  $exe -e > /dev/null
-  exit 1
-fi
-LINES=`cat $base.out | grep resolver | grep not | wc -l`
-if test $LINES -ne 1; then
-  echo "FAIL: unexpected output"
-  cat $base.out 
-  $exe -e > /dev/null
-  exit 1
-fi
-echo "PASS"
-
 # ----------------------------------------------------------------------------------
 echo -n "TEST: Stop ARM... "
 
@@ -102,5 +61,5 @@ sleep 1
 echo "PASS"
 
 rm -rf /tmp/test-gnunetd-arm/
-rm -f $base.out $out
+rm -f $out