Run tests recursively.
Dave Rolsky [Wed, 19 Aug 2009 16:25:13 +0000 (11:25 -0500)]
Add log file to ignore list

.gitignore [new file with mode: 0644]
cpan-stable-smolder

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..1cea459
--- /dev/null
@@ -0,0 +1 @@
+cpan-stable-smolder.log
index 7440568..87b3c6b 100755 (executable)
@@ -32,7 +32,7 @@ my @modules;
     @modules = map { chomp; $_ } <$fh>;
 }
 
-test_all_modules(@modules); 
+test_all_modules(@modules);
 
 close $log;
 
@@ -132,7 +132,7 @@ sub _run_commands {
 sub _run_tests {
     my $output;
 
-    run3 [ qw( prove -b ) ], undef, \$output, \$output;
+    run3 [ qw( prove -br ) ], undef, \$output, \$output;
 
     my $passed = $output =~ /Result: PASS/;
     my $warned = $output =~ /at .+ line \d+/;