should be ready for second pass now
This commit is contained in:
parent
0bf0c7bdf4
commit
879c4ac4e8
4 changed files with 4 additions and 3 deletions
BIN
everything.stor
BIN
everything.stor
Binary file not shown.
|
@ -13,6 +13,8 @@ for my $mod (keys $data->{jobstatus}->%*) {
|
|||
}
|
||||
|
||||
# Remove invalid names from the list
|
||||
$data->{modules} = [grep {m|[/ ]|} $data->{modules}-@*];
|
||||
$data->{modules} = [grep {!m|[/ ]|} $data->{modules}->@*];
|
||||
|
||||
print Dumper($data->{modules});
|
||||
|
||||
store $data, 'everything.stor';
|
||||
|
|
BIN
modcache.stor
BIN
modcache.stor
Binary file not shown.
3
run.pl
3
run.pl
|
@ -32,7 +32,7 @@ GetOptions ("module=s" => \$opt_module,
|
|||
if ((!$opt_module && !$opt_cpanfile) || ($opt_module && $opt_cpanfile) || $opt_help) {
|
||||
print "Call with either --cpanfile xor --module to specify what to test.\n",
|
||||
"Use --perlbrew_env to specify which perl install to use, defaults to blead\n",
|
||||
"Add --jobstor to save progress for resuming, and examining later\n";
|
||||
"Add --jobstor to save progress for resuming, and examining later\n",
|
||||
"Use --pass to do another pass on the modules, defaults to 1, only reruns failures\n";
|
||||
exit(1);
|
||||
}
|
||||
|
@ -71,7 +71,6 @@ sub __save_cache {
|
|||
};
|
||||
END {__save_cache};
|
||||
|
||||
|
||||
for my $mod (@modules) {
|
||||
print "Testing $mod\n";
|
||||
my $status = $jobstatus{$mod}{status} // "";
|
||||
|
|
Loading…
Add table
Reference in a new issue