2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-22 10:10:06 +00:00

Remove -U 4 from system tests

This option doesn't appear to be needed for any of the tests, so remove
it to keep things simple.
This commit is contained in:
Tom Krizek 2023-12-01 13:59:55 +01:00
parent 519e77d067
commit 1e181cf61d
No known key found for this signature in database
GPG Key ID: 01623B9B652A20A7
19 changed files with 18 additions and 20 deletions

View File

@ -325,8 +325,6 @@ By default, `named` server is started with the following options:
-m record
Turns on these memory usage debugging flags.
-U 4 Uses four listeners.
All output is sent to a file called `named.run` in the nameserver directory.
The options used to start named can be altered. There are a couple ways of

View File

@ -1,2 +1,2 @@
# Using "-n 1" allows GL #1795 to be reliably reproduced
-D dnstap-ns3 -m record -c named.conf -d 99 -g -U 4 -n 1 -T maxcachesize=2097152
-D dnstap-ns3 -m record -c named.conf -d 99 -g -n 1 -T maxcachesize=2097152

View File

@ -1 +1 @@
@ENGINE_ARGS@ -D enginepkcs11-ns1 -m record -c named.conf -d 99 -U 4 -T maxcachesize=2097152
@ENGINE_ARGS@ -D enginepkcs11-ns1 -m record -c named.conf -d 99 -T maxcachesize=2097152

View File

@ -1 +1 @@
-m record -c named.conf -d 99 -D legacy-ns4 -g -U 4 -T maxcachesize=2097152 -T noedns
-m record -c named.conf -d 99 -D legacy-ns4 -g -T maxcachesize=2097152 -T noedns

View File

@ -1 +1 @@
-m record -c named.conf -d 99 -D legacy-ns5 -g -U 4 -T maxcachesize=2097152 -T noedns
-m record -c named.conf -d 99 -D legacy-ns5 -g -T maxcachesize=2097152 -T noedns

View File

@ -1 +1 @@
-m record -c named.conf -d 99 -D legacy-ns6 -g -U 4 -T maxcachesize=2097152 -T maxudp512
-m record -c named.conf -d 99 -D legacy-ns6 -g -T maxcachesize=2097152 -T maxudp512

View File

@ -1 +1 @@
-m record -c named.conf -d 99 -D legacy-ns7 -g -U 4 -T maxcachesize=2097152 -T maxudp512
-m record -c named.conf -d 99 -D legacy-ns7 -g -T maxcachesize=2097152 -T maxudp512

View File

@ -1 +1 @@
-c named.conf -m record -T nosyslog -d 99 -D logfileconfig-ns1 -U 4
-c named.conf -m record -T nosyslog -d 99 -D logfileconfig-ns1

View File

@ -1 +1 @@
-c named.conf -m record -T nosyslog -d 99 -D logfileconfig-ns1 -U 4 -L named_deflog
-c named.conf -m record -T nosyslog -d 99 -D logfileconfig-ns1 -L named_deflog

View File

@ -1 +1 @@
-D mirror-ns3 -m record -c named.conf -d 99 -g -U 4 -T maxcachesize=2097152 -T tat=3
-D mirror-ns3 -m record -c named.conf -d 99 -g -T maxcachesize=2097152 -T tat=3

View File

@ -1 +1 @@
-D nsupdate-ns5 -m record -c named.conf -d 99 -g -U 4 -T maxcachesize=2097152 -T fixedlocal
-D nsupdate-ns5 -m record -c named.conf -d 99 -g -T maxcachesize=2097152 -T fixedlocal

View File

@ -1 +1 @@
-D nsupdate-ns6 -m record -c named.conf -d 99 -g -U 4 -T maxcachesize=2097152 -T fixedlocal
-D nsupdate-ns6 -m record -c named.conf -d 99 -g -T maxcachesize=2097152 -T fixedlocal

View File

@ -1,3 +1,3 @@
# teardown of a huge zone with tracing enabled takes way too long
# -m none is set so that stop.pl does not timeout
-D rndc-ns6 -m none -c named.conf -d 99 -g -U 4 -T maxcachesize=2097152
-D rndc-ns6 -m none -c named.conf -d 99 -g -T maxcachesize=2097152

View File

@ -1 +1 @@
-m record -c named.conf -d 99 -D rpzextra-ns1 -U 4 -T maxcachesize=2097152
-m record -c named.conf -d 99 -D rpzextra-ns1 -T maxcachesize=2097152

View File

@ -17,7 +17,7 @@ set -e
. ../conf.sh
RNDCCMD="$RNDC -c ../_common/rndc.conf -p ${CONTROLPORT} -s"
NAMED_DEFAULT_ARGS="-m record -d 99 -g -U 4"
NAMED_DEFAULT_ARGS="-m record -d 99 -g"
kill_named() {
pidfile="${1}"

View File

@ -280,7 +280,7 @@ sub construct_ns_command {
}
}
$command .= "-c named.conf -d 99 -g -U 4 -T maxcachesize=2097152";
$command .= "-c named.conf -d 99 -g -T maxcachesize=2097152";
}
if (-e "$testdir/$server/named.notcp") {

View File

@ -18,7 +18,7 @@ set -e
DIGCMD="$DIG @10.53.0.2 -p ${PORT}"
RNDCCMD="$RNDC -c ../_common/rndc.conf -p ${CONTROLPORT} -s"
NS_PARAMS="-m record -c named.conf -d 99 -g -U 4 -T maxcachesize=2097152"
NS_PARAMS="-m record -c named.conf -d 99 -g -T maxcachesize=2097152"
if ! $FEATURETEST --have-json-c; then
unset PERL_JSON

View File

@ -1 +1 @@
-D xfer-ns6 -m record -c named.conf -d 99 -g -U 4 -T maxcachesize=2097152 -T transferinsecs
-D xfer-ns6 -m record -c named.conf -d 99 -g -T maxcachesize=2097152 -T transferinsecs

View File

@ -17,7 +17,7 @@ set -e
DIGOPTS="+tcp +noadd +nosea +nostat +noquest +nocomm +nocmd -p ${PORT}"
RNDCCMD="$RNDC -c ../_common/rndc.conf -p ${CONTROLPORT} -s"
NS_PARAMS="-m record -c named.conf -d 99 -g -U 4 -T maxcachesize=2097152"
NS_PARAMS="-m record -c named.conf -d 99 -g -T maxcachesize=2097152"
status=0
n=0