From c05b7fe20df96965ff853b28ca1bff4662a583b9 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sat, 25 Apr 2020 16:30:26 +0200 Subject: runtests: check for the disabled tests relative srcdir To make it work correctly for out-of-tree builds. Follow-up to 75e8feb6fb08b --- tests/runtests.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/runtests.pl b/tests/runtests.pl index da3fac2e6..fe794b3b7 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -5446,7 +5446,7 @@ sub disabledtests { if($_ =~ /(\d+)/) { my ($n) = $1; $disabled{$n}=$n; # disable this test number - if(! -f "data/test$n") { + if(! -f "$srcdir/data/test$n") { print STDERR "WARNING! Non-exiting test $n in DISABLED!\n"; # fail hard to make user notice exit 1; -- cgit v1.2.1