From 2a0b81d6daa6296b99054ae17b7a75e9b1641d6f Mon Sep 17 00:00:00 2001 From: Tony Finch Date: Tue, 13 Sep 2022 11:35:08 +0100 Subject: [PATCH] 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. --- bin/tests/system/testsock.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tests/system/testsock.pl b/bin/tests/system/testsock.pl index 5073a815fb..3677e200b2 100755 --- a/bin/tests/system/testsock.pl +++ b/bin/tests/system/testsock.pl @@ -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 () { @ids = (1..$1)