From 4fef8acbfaaa503f9a3ebfeea3b03f94d6037ebc Mon Sep 17 00:00:00 2001 From: Diego Fronza Date: Wed, 21 Oct 2020 16:49:25 -0300 Subject: [PATCH] Adjusted additional system test (NS, non-root zone) After the updates from this branch, BIND now sends glue records for NS queries even when configured with minimal-responses yes. --- bin/tests/system/additional/tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tests/system/additional/tests.sh b/bin/tests/system/additional/tests.sh index a45f8d283e..6400723a55 100644 --- a/bin/tests/system/additional/tests.sh +++ b/bin/tests/system/additional/tests.sh @@ -227,7 +227,7 @@ dotests() { $DIG $DIGOPTS -t NS rt.example @10.53.0.1 > dig.out.$n || ret=1 case $minimal in yes) - grep 'ADDITIONAL: 1' dig.out.$n > /dev/null || ret=1 + grep 'ADDITIONAL: 2' dig.out.$n > /dev/null || ret=1 ;; no) grep 'ADDITIONAL: 2' dig.out.$n > /dev/null || ret=1