mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-14 14:42:22 -04:00
Reintroduce logic to apply diffs when the number of pending tuples is
above 128. The previous strategy of accumulating all the tuples and
pushing them at the end leads to excessive memory consumption during
transfer.
This effectively reverts half of e3892805d6
39 lines
1.8 KiB
Bash
Executable file
39 lines
1.8 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
|
#
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, you can obtain one at https://mozilla.org/MPL/2.0/.
|
|
#
|
|
# See the COPYRIGHT file distributed with this work for additional
|
|
# information regarding copyright ownership.
|
|
|
|
# shellcheck source=conf.sh
|
|
. ../../conf.sh
|
|
|
|
$CHECKZONE -D -F raw -o example.db.raw example \
|
|
example.db >/dev/null 2>&1
|
|
$CHECKZONE -D -F raw -o ../ns3/example.db.raw example \
|
|
example.db >/dev/null 2>&1
|
|
$CHECKZONE -D -F raw -o ../ns3/dynamic.db.raw dynamic \
|
|
example.db >/dev/null 2>&1
|
|
$CHECKZONE -D -F raw=1 -o example.db.raw1 example-explicit \
|
|
example.db >/dev/null 2>&1
|
|
$CHECKZONE -D -F raw=0 -o example.db.compat example-compat \
|
|
example.db >/dev/null 2>&1
|
|
$CHECKZONE -D -F raw -L 3333 -o example.db.serial.raw example \
|
|
example.db >/dev/null 2>&1
|
|
$CHECKZONE -D -F raw -o under-limit.db.raw under-limit under-limit.db >/dev/null 2>&1
|
|
$CHECKZONE -D -F raw -o under-limit-kasp.db.raw under-limit-kasp under-limit-kasp.db >/dev/null 2>&1
|
|
$CHECKZONE -D -F raw -o below-limit.db.raw below-limit below-limit.db >/dev/null 2>&1
|
|
$CHECKZONE -D -F raw -o below-limit-kasp.db.raw below-limit-kasp below-limit-kasp.db >/dev/null 2>&1
|
|
$CHECKZONE -D -F raw -o above-limit.db.raw above-limit above-limit.db >/dev/null 2>&1
|
|
$CHECKZONE -D -F raw -o 255types.db.raw 255types 255types.db >/dev/null 2>&1
|
|
|
|
$KEYGEN -q -a "$DEFAULT_ALGORITHM" -b "$DEFAULT_BITS" -f KSK signed >/dev/null 2>&1
|
|
$KEYGEN -q -a "$DEFAULT_ALGORITHM" -b "$DEFAULT_BITS" signed >/dev/null 2>&1
|
|
$SIGNER -S -f signed.db.signed -o signed signed.db >/dev/null
|
|
$CHECKZONE -D -F raw -o signed.db.raw signed signed.db.signed >/dev/null 2>&1
|