Skip to content

Commit

Permalink
skip/fudge some newer tests that have trouble on JVM
Browse files Browse the repository at this point in the history
  • Loading branch information
skids committed Jul 24, 2015
1 parent 10e7faf commit c0cef60
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions S04-phasers/enter-leave.t
Original file line number Diff line number Diff line change
Expand Up @@ -247,8 +247,11 @@ plan 27;
}

# RT #116102
is ENTER { 42 }, 42, 'ENTER works as an r-value (mainline)';
sub enter-test() { ENTER 'SANDMAN' }
is enter-test(), 'SANDMAN', 'ENTER works as an r-value (sub)';
#?rakudo.jvm skip 'java.lang.NullPointerException (second one only with is())'
{
is ENTER { 42 }, 42, 'ENTER works as an r-value (mainline)';
sub enter-test() { ENTER 'SANDMAN' }
is enter-test(), 'SANDMAN', 'ENTER works as an r-value (sub)';
}

# vim: ft=perl6

0 comments on commit c0cef60

Please sign in to comment.