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

Fix out-of-tree tests

The change to `testsock.pl` in commit 258a896a broke the system
tests in out-of-tree builds because `ifconfig.sh.in` is not
copied to the worktree. Use `ifconfig.sh` instead.
This commit is contained in:
Tony Finch
2022-09-13 11:35:08 +01:00
parent 44235cd2cf
commit 2a0b81d6da

View File

@@ -27,7 +27,7 @@ my @ids;
if ($id != 0) {
@ids = ($id);
} else {
my $fn = "ifconfig.sh.in";
my $fn = "ifconfig.sh";
open FH, "< $fn" or die "open < $fn: $!\n";
while (<FH>) {
@ids = (1..$1)