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
+}
ts_check_prog "bc"
ts_check_prog "sntp"
-function 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
-}
-
function get_offset_sys_ntp
{
local ip="$@"
# we need fixed ntp IP to get comparable offsets
-NTP_IP=$(resolve_host "$NTP_SERVER") \
+NTP_IP=$(ts_resolve_host "$NTP_SERVER") \
|| ts_skip "can't resolve hostname $NTP_SERVER"
OFFSET_A=$(get_offset_sys_ntp "$NTP_IP") \
|| ts_skip "can't create test data"
fi
+# there is no better way yet to skip a subtest
+if ts_resolve_host "a.root-servers.net" >/dev/null; then
ts_init_subtest "dns"
+
ts_log "~~~ dns short ~~~"
$TS_CMD_LAST -f $WTMP_FILE -d root >> $TS_OUTPUT 2>/dev/null
ts_log "~~~ dns host last ~~~"
$TS_CMD_LAST -f $WTMP_FILE -a -d root >> $TS_OUTPUT 2>/dev/null
+
ts_finalize_subtest
+fi
ts_init_subtest "nodns"
ts_log "~~~ basic output ~~~"
|| ts_skip "can't create test data"
fi
+# there is no better way yet to skip a subtest
+if ts_resolve_host "a.root-servers.net" >/dev/null; then
ts_init_subtest "dns"
+
ts_log "~~~ dns short ~~~"
$TS_CMD_LAST -f $WTMP_FILE -d >> $TS_OUTPUT 2>/dev/null
ts_log "~~~ dns host last ~~~"
$TS_CMD_LAST -f $WTMP_FILE -d -a >> $TS_OUTPUT 2>/dev/null
+
ts_finalize_subtest
+fi
ts_init_subtest "nodns"
ts_log "~~~ show ip ~~~"