System back up, restarting tests

This commit is contained in:
Your Name 2017-04-08 22:38:54 -04:00
parent 6ebff973b2
commit 485847b2f4
2 changed files with 16 additions and 0 deletions

16
disableembperl.pl Executable file
View file

@ -0,0 +1,16 @@
#!/usr/bin/env perl
use 5.24.0;
use Data::Dumper;
use Storable;
my $data = retrieve $ARGV[0];
for my $mod ($data->{modules}->@*) {
if ($mod =~ /Embperl/ && !$data->{jobstatus}{$mod}{tested}) {
$data->{jobstatus}{$mod}={tested => 3, status => "embperl failure"};
}
}
store $data, $ARGV[0].'.new';

Binary file not shown.