From 0e87ffeb33918eadd85f658d9cae8fc2c4750766 Mon Sep 17 00:00:00 2001 From: Moritz Lenz Date: Sun, 20 Apr 2014 13:52:42 +0200 Subject: Add "verbose-modules-test" target --- tools/build/modules-test.pl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'tools/build/modules-test.pl') diff --git a/tools/build/modules-test.pl b/tools/build/modules-test.pl index 095e76b..396f066 100644 --- a/tools/build/modules-test.pl +++ b/tools/build/modules-test.pl @@ -1,6 +1,9 @@ #! perl use Cwd; +use Getopt::Long; + +GetOptions('verbose' => \my $verbose); my $base = shift @ARGV; my $perl6 = shift @ARGV; @@ -11,7 +14,7 @@ while (<>) { print "Testing modules/$moduledir with $perl6...\n"; if (-d "$base/modules/$moduledir/t") { chdir("$base/modules/$moduledir"); - system('prove', '-e', $perl6, '-r', 't'); + system('prove', $verbose ? '-v' : (), '-e', $perl6, '-r', 't'); } else { print "...no t/ directory found.\n"; -- cgit v1.1