From de4a087673361d403067e037b01b759fe41c6912 Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Mon, 17 Jun 2024 11:36:41 +1000 Subject: [PATCH] resolver system test didn't record all failures (cherry picked from commit 5843b29f472cff3dad8bbc2b381a1f0d917fe862) --- bin/tests/system/resolver/tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tests/system/resolver/tests.sh b/bin/tests/system/resolver/tests.sh index 83e0ed404c..2a3774675b 100755 --- a/bin/tests/system/resolver/tests.sh +++ b/bin/tests/system/resolver/tests.sh @@ -1060,6 +1060,7 @@ grep "ANSWER: [12]," dig.out.2.${n} >/dev/null || ret=1 lines=$(awk '$1 == "mixedttl.tld." && $2 > 30 { print }' dig.out.2.${n} | wc -l) test ${lines:-1} -ne 0 && ret=1 if [ $ret != 0 ]; then echo_i "failed"; fi +status=$((status + ret)) n=$((n + 1)) echo_i "check resolver behavior when FORMERR for EDNS options happens (${n})" @@ -1071,7 +1072,6 @@ dig_with_opts +tcp @10.53.0.5 options-formerr A >dig.out.${n} || ret=1 grep "status: NOERROR" dig.out.${n} >/dev/null || ret=1 nextpart ns5/named.run | grep "$msg" >/dev/null || ret=1 if [ $ret != 0 ]; then echo_i "failed"; fi - status=$((status + ret)) echo_i "exit status: $status"