The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
my $incs;
$incs .= " -I$_" foreach @INC;
my @newout = sort {
    (($a =~ /(\d+)/g)[0] <=> ($b =~ /(\d+)/g)[0])
} `mpirun -np 2 $^X $incs ic.pl`;
print "1..".scalar(@newout)."\n";
print @newout;