aboutsummaryrefslogtreecommitdiff
path: root/src/gns/test_gns_gns2dns_cname_lookup.sh
diff options
context:
space:
mode:
authorng0 <ng0@n0.is>2019-03-09 11:56:13 +0000
committerng0 <ng0@n0.is>2019-03-09 11:56:13 +0000
commitf7aa05c490d2027225e99a6d5f5bf920e76bf5ed (patch)
treed74ff993beec74e30050de696d0d5e797e88b0fb /src/gns/test_gns_gns2dns_cname_lookup.sh
parent47d973e97236d93c90d8f2fb49ccb46164e03e24 (diff)
downloadgnunet-f7aa05c490d2027225e99a6d5f5bf920e76bf5ed.tar.gz
gnunet-f7aa05c490d2027225e99a6d5f5bf920e76bf5ed.zip
bashism
Diffstat (limited to 'src/gns/test_gns_gns2dns_cname_lookup.sh')
-rwxr-xr-xsrc/gns/test_gns_gns2dns_cname_lookup.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gns/test_gns_gns2dns_cname_lookup.sh b/src/gns/test_gns_gns2dns_cname_lookup.sh
index c07905d83..fbc1dd7ee 100755
--- a/src/gns/test_gns_gns2dns_cname_lookup.sh
+++ b/src/gns/test_gns_gns2dns_cname_lookup.sh
@@ -1,4 +1,4 @@
1#!/bin/bash 1#!/bin/sh
2# This file is in the public domain. 2# This file is in the public domain.
3trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT 3trap "gnunet-arm -e -c test_gns_lookup.conf" SIGINT
4 4
@@ -25,7 +25,7 @@ TEST_RECORD_NAME="homepage"
25 25
26XNS=ns.joker.com 26XNS=ns.joker.com
27 27
28if ! nslookup gnunet.org a.$XNS &> /dev/null 28if ! nslookup gnunet.org a.$XNS > /dev/null 2>&1
29then 29then
30 echo "Cannot reach DNS, skipping test" 30 echo "Cannot reach DNS, skipping test"
31 exit 77 31 exit 77
@@ -43,7 +43,7 @@ MY_EGO="myego"
43# various names we will use for resolution 43# various names we will use for resolution
44TEST_DOMAIN="www.${TEST_RECORD_NAME}.$MY_EGO" 44TEST_DOMAIN="www.${TEST_RECORD_NAME}.$MY_EGO"
45 45
46which timeout &> /dev/null && DO_TIMEOUT="timeout 15" 46which timeout > /dev/null 2>&1 && DO_TIMEOUT="timeout 15"
47 47
48gnunet-arm -s -c test_gns_lookup.conf 48gnunet-arm -s -c test_gns_lookup.conf
49OUT=`$DO_TIMEOUT gnunet-resolver -c test_gns_lookup.conf gnunet.org` 49OUT=`$DO_TIMEOUT gnunet-resolver -c test_gns_lookup.conf gnunet.org`
@@ -77,7 +77,7 @@ gnunet-arm -e -c test_gns_lookup.conf
77rm -rf `gnunet-config -c test_gns_lookup.conf -f -s paths -o GNUNET_TEST_HOME` 77rm -rf `gnunet-config -c test_gns_lookup.conf -f -s paths -o GNUNET_TEST_HOME`
78 78
79ret=0 79ret=0
80if [ "$RES_IP" == "$TEST_IP" ] 80if [ "$RES_IP" = "$TEST_IP" ]
81then 81then
82 echo "PASS: Resolved $TEST_DOMAIN to $RES_IP." 82 echo "PASS: Resolved $TEST_DOMAIN to $RES_IP."
83else 83else
@@ -85,7 +85,7 @@ else
85 ret=1 85 ret=1
86fi 86fi
87 87
88if [ "$RES_IP6" == "$TEST_IP6" ] 88if [ "$RES_IP6" = "$TEST_IP6" ]
89then 89then
90 echo "PASS: Resolved $TEST_DOMAIN to $RES_IP6." 90 echo "PASS: Resolved $TEST_DOMAIN to $RES_IP6."
91else 91else