fatal("ERROR: -f can only be used with one zone.")
# strip trailing dots
- args.zone = [x[:-1] for x in args.zone if len(x) > 1 and x[-1] == '.']
+ args.zone = [x[:-1] if len(x) > 1 and x[-1] == '.' else x
+ for x in args.zone]
# convert from time arguments to seconds
try:
status=`expr $status + $ret`
done
+dir=dotted-dotless
+[ -d $dir ] || mkdir $dir
+echo_i "$dir"
+zsk1=`$KEYGEN -q -K $dir -a rsasha256 one.example`
+zsk2=`$KEYGEN -q -K $dir -a rsasha256 two.example`
+$COVERAGE -K $dir one.example. two.example > coverage.$n 2>&1
+grep one.example coverage.$n >/dev/null 2>&1 || ret=1
+grep two.example coverage.$n >/dev/null 2>&1 || ret=1
+n=`expr $n + 1`
+if [ $ret != 0 ]; then echo_i "failed"; fi
+status=`expr $status + $ret`
+
echo_i "exit status: $status"
[ $status -eq 0 ] || exit 1