8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de2af6e commit fd2487eCopy full SHA for fd2487e
src/tools/msvc/vcregress.pl
@@ -227,11 +227,20 @@ sub bincheck
227
sub taptest
228
{
229
my $dir = shift;
230
+ my @args;
231
+
232
+ if ($dir =~ /^PROVE_FLAGS=/)
233
+ {
234
+ push(@args, $dir);
235
+ $dir = shift;
236
+ }
237
238
die "no tests found!" unless -d "$topdir/$dir/t";
239
240
+ push(@args,"$topdir/$dir);
241
242
InstallTemp();
- my $status = tap_check("$topdir/$dir");
243
+ my $status = tap_check(@args);
244
exit $status if $status;
245
}
246
0 commit comments