Skip to content

Commit 9c3f502

Browse files
committed
Fix vcregress.pl PROVE_FLAGS bug in commit 93b7d97
This change didn't adjust the publicly visible taptest function, causing buildfarm failures on bowerbird. Backpatch to 9.4 like previous change.
1 parent 2402998 commit 9c3f502

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

src/tools/msvc/vcregress.pl

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,11 +223,20 @@ sub bincheck
223223
sub taptest
224224
{
225225
my $dir = shift;
226+
my @args;
227+
228+
if ($dir =~ /^PROVE_FLAGS=/)
229+
{
230+
push(@args, $dir);
231+
$dir = shift;
232+
}
226233

227234
die "no tests found!" unless -d "$topdir/$dir/t";
228235

236+
push(@args,"$topdir/$dir);
237+
229238
InstallTemp();
230-
my $status = tap_check("$topdir/$dir");
239+
my $status = tap_check(@args);
231240
exit $status if $status;
232241
}
233242

0 commit comments

Comments
 (0)