diff options
author | Christian Grothoff <christian@grothoff.org> | 2018-11-03 22:11:42 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2018-11-03 22:11:42 +0100 |
commit | 31cc8a750f8df10f0a69a8ba9db08a15efa2f415 (patch) | |
tree | bee823242daddc0a4e10987170f5ea6bbb09d316 /src | |
parent | 30ecc23f94aff98f1cfde23a82b455693f8aec15 (diff) |
change cmp to be case-insensitive (to get tests to pass)
Diffstat (limited to 'src')
-rwxr-xr-x | src/gns/test_gns_cname_lookup.sh | 3 | ||||
-rwxr-xr-x | src/gns/test_gns_mx_lookup.sh | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/src/gns/test_gns_cname_lookup.sh b/src/gns/test_gns_cname_lookup.sh index f6b7a842d..de575c561 100755 --- a/src/gns/test_gns_cname_lookup.sh +++ b/src/gns/test_gns_cname_lookup.sh @@ -54,6 +54,9 @@ gnunet-identity -D $MY_EGO -c test_gns_lookup.conf gnunet-arm -e -c test_gns_lookup.conf rm -rf `gnunet-config -c test_gns_lookup.conf -f -s paths -o GNUNET_TEST_HOME` +# make cmp case-insensitive by converting to lower case first +RES_CNAME_RAW=`echo $RES_CNAME_RAW | tr [A-Z] [a-z]` +TESTEGOZONE=`echo $TESTEGOZONE | tr [A-Z] [a-z]` if [ "$RES_CNAME_RAW" == "server.$TESTEGOZONE" ] then echo "PASS: CNAME resolution from GNS" diff --git a/src/gns/test_gns_mx_lookup.sh b/src/gns/test_gns_mx_lookup.sh index 3a360494b..79ac37b0a 100755 --- a/src/gns/test_gns_mx_lookup.sh +++ b/src/gns/test_gns_mx_lookup.sh @@ -31,6 +31,10 @@ gnunet-identity -D $MY_EGO -c test_gns_lookup.conf gnunet-arm -e -c test_gns_lookup.conf rm -rf `gnunet-config -c test_gns_lookup.conf -f -s paths -o GNUNET_TEST_HOME` +# make cmp case-insensitive by converting to lower case first +RES_MX=`echo $RES_MX | tr [A-Z] [a-z]` +WANT_MX=`echo $WANT_MX | tr [A-Z] [a-z]` + if [ "$RES_MX" == "$WANT_MX" ] then exit 0 |