From a98de9696e1a898f925c9154e5693e73aec0779d Mon Sep 17 00:00:00 2001 From: Ruediger Meier Date: Wed, 11 Jun 2014 19:28:20 +0200 Subject: tests: skip some last tests if no dns support Signed-off-by: Ruediger Meier --- tests/functions.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'tests/functions.sh') diff --git a/tests/functions.sh b/tests/functions.sh index 31ad481f4..2a50de721 100644 --- a/tests/functions.sh +++ b/tests/functions.sh @@ -610,3 +610,20 @@ function ts_scsi_debug_init { TS_DEVICE="/dev/${devname}" } + +function ts_resolve_host { + local host="$1" + local tmp + + # currently we just resolve default records (might be "A", ipv4 only) + if type "dig" >/dev/null 2>&1; then + tmp=$(dig "$host" +short 2>/dev/null) || return 1 + elif type "nslookup" >/dev/null 2>&1; then + tmp=$(nslookup "$host" 2>/dev/null) || return 1 + tmp=$(echo "$tmp"| grep -A1 "^Name:"| grep "^Address:"| cut -d" " -f2) + fi + + # we return 1 if tmp is empty + test -n "$tmp" || return 1 + echo "$tmp" | sort -R | head -n 1 +} -- cgit v1.2.3-55-g7522