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