mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-28 13:24:02 -04:00
Ensure the port numbers are dynamically filled in with copy_setports. Clarify test fail condition. Make the stress test part of the default test suite since it doesn't seem to run too long or interfere with other tests any more (the original note claiming so is more than 20 years old). Related !6883
42 lines
1 KiB
Bash
42 lines
1 KiB
Bash
#!/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.
|
|
|
|
. ../conf.sh
|
|
|
|
status=0
|
|
|
|
(
|
|
$SHELL -c "while true
|
|
do $RNDC -c ../common/rndc.conf -s 10.53.0.3 -p $CONTROLPORT reload 2>&1 |
|
|
sed 's/^/I:ns3 /';
|
|
sleep 1
|
|
done" & echo $! >reload.pid
|
|
) &
|
|
|
|
for i in 0 1 2 3 4
|
|
do
|
|
$PERL update.pl -s 10.53.0.2 -p $PORT zone00000$i.example. &
|
|
done
|
|
|
|
echo_i "waiting for background processes to finish"
|
|
wait
|
|
|
|
echo_i "killing reload loop"
|
|
kill `cat reload.pid`
|
|
|
|
# If the test has run to completion without named crashing, it has succeeded.
|
|
# Otherwise, the crash will be detected by the test framework and the test will
|
|
# fail.
|
|
|
|
echo_i "exit status: $status"
|
|
[ $status -eq 0 ] || exit 1
|