aboutsummaryrefslogtreecommitdiff
path: root/src/gns/test_gns_pseu_shorten.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/gns/test_gns_pseu_shorten.sh')
-rwxr-xr-xsrc/gns/test_gns_pseu_shorten.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gns/test_gns_pseu_shorten.sh b/src/gns/test_gns_pseu_shorten.sh
index 7c07ec18e..d9c107d6f 100755
--- a/src/gns/test_gns_pseu_shorten.sh
+++ b/src/gns/test_gns_pseu_shorten.sh
@@ -28,17 +28,17 @@ gnunet-arm -e -c test_gns_lookup.conf
28 28
29if [ "$RES_IP" == "$TEST_IP" ] 29if [ "$RES_IP" == "$TEST_IP" ]
30then 30then
31 echo "$TEST_NAME resolved , got $RES_IP." 31 echo "PASS: Resolved $TEST_NAME properly to $RES_IP."
32else 32else
33 echo "Failed to resolve $TEST_NAME to proper IP, got $RES_IP." 33 echo "FAIL: Could not resolve $TEST_NAME to proper IP, got $RES_IP."
34 exit 1 34 exit 1
35fi 35fi
36 36
37if [ "$RES_IP_PSEU" == "$TEST_IP" ] 37if [ "$RES_IP_PSEU" == "$TEST_IP" ]
38then 38then
39 echo "$TEST_NAME_SHORT resolved , got $RES_IP." 39 echo "PASS: Resolved $TEST_NAME_SHORT properly to $RES_IP."
40 exit 0 40 exit 0
41else 41else
42 echo "Failed to resolve $TEST_NAME_SHORT to proper IP, got $RES_IP_PSEU." 42 echo "FAIL: Could not resolve $TEST_NAME_SHORT to proper IP, got $RES_IP_PSEU."
43 exit 1 43 exit 1
44fi 44fi