Second pass works. Now to do more research on what to fix for manual intervention

This commit is contained in:
Your Name 2017-04-18 15:11:01 -04:00
parent db8f704fa2
commit a6fe212c6a
3 changed files with 1 additions and 1 deletions

Binary file not shown.

Binary file not shown.

2
run.pl
View file

@ -74,7 +74,7 @@ END {__save_cache};
for my $mod (@modules) {
print "Testing $mod\n";
my $status = $jobstatus{$mod}{status} // "";
unless ($jobstatus{$mod}{tested} == $opt_pass && ($status ne "success" || $status ne 'manual failure') ) {
if ($jobstatus{$mod}{tested} != $opt_pass && $status ne "success" && $status ne 'manual failure' ) {
print "STATUS => $status, PASS => $opt_pass, TESTED => ", $jobstatus{$mod}{tested}, "\n";
my $status = TestCpanInc::test_module($mod);
$jobstatus{$mod}{tested} = 1;