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 4e763fb commit b4a1d69Copy full SHA for b4a1d69
src/tools/msvc/vcregress.pl
@@ -226,11 +226,20 @@ sub bincheck
226
sub taptest
227
{
228
my $dir = shift;
229
+ my @args;
230
+
231
+ if ($dir =~ /^PROVE_FLAGS=/)
232
+ {
233
+ push(@args, $dir);
234
+ $dir = shift;
235
+ }
236
237
die "no tests found!" unless -d "$topdir/$dir/t";
238
239
+ push(@args,"$topdir/$dir);
240
241
InstallTemp();
- my $status = tap_check("$topdir/$dir");
242
+ my $status = tap_check(@args);
243
exit $status if $status;
244
}
245
0 commit comments