This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Remove redundant use strict,warnings,?DBM_File from ext/?DBM_File/t/?dbm.t.
[perl5.git] / regen.pl
index f97a618..4f3be80 100644 (file)
--- a/regen.pl
+++ b/regen.pl
@@ -26,8 +26,9 @@ warnings.pl
 embed.pl
 );
 
-foreach my $pl (@scripts) {
+my $tap = $ARGV[0] && $ARGV[0] eq '--tap' ? '# ' : '';
+foreach my $pl (map {"regen/$_"} @scripts) {
   my @command =  ($^X, $pl, @ARGV);
-  print "@command\n";
+  print "$tap@command\n";
   system @command;
 }