We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e7b85b commit 259ed8dCopy full SHA for 259ed8d
test_summary
@@ -484,9 +484,9 @@ sub get_test_names {
484
open($fh, '<', $testlist) || die "Can't read $testlist: $!";
485
while (<$fh>) {
486
/^ *#/ && next;
487
- my ($specfile, $fudgespec) = split ' ', $_;
+ my ($specfile, $fudgespec) = split ' ', $_, 2;
488
next unless $specfile;
489
- next if $fudgespec =~ /jvm/ && $implementation =~ /jvm/;
+ next if $fudgespec =~ /jvm/ && $implementation !~ /jvm/;
490
push @tfiles, "t/spec/$specfile";
491
}
492
close $fh or die $!;
0 commit comments