Skip to content

Commit

Permalink
[test_summary] skip #jvm files on rakudo-jvm
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed Nov 13, 2013
1 parent 1896270 commit a5b4ce0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test_summary
Original file line number Diff line number Diff line change
Expand Up @@ -484,8 +484,9 @@ sub get_test_names {
open($fh, '<', $testlist) || die "Can't read $testlist: $!";
while (<$fh>) {
/^ *#/ && next;
my ($specfile) = split ' ', $_;
my ($specfile, $fudgespec) = split ' ', $_;
next unless $specfile;
next if $fudgespec =~ /jvm/ && $implementation =~ /jvm/;
push @tfiles, "t/spec/$specfile";
}
close $fh or die $!;
Expand Down

0 comments on commit a5b4ce0

Please sign in to comment.