Skip to content

Commit 75f702c

Browse files
committed
Fudge some tests for JVM, RT #124279
1 parent 5b1c98c commit 75f702c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

S05-modifier/counted-match.t

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ my $data = "f fo foo fooo foooo fooooo foooooo";
5151

5252
# more interesting variations of :nth(...)
5353
#?niecza skip 'hangs'
54+
#?rakudo.jvm skip 'RT #124279'
5455
{
5556
my @match = $data.match(/fo+/, :nth(2, 3)).list;
5657
is +@match, 2, 'nth(list) is ok';
@@ -73,7 +74,7 @@ my $data = "f fo foo fooo foooo fooooo foooooo";
7374
is @match, <foo foooo foooooo>, 'nth(infinite sequence) matched correctly';
7475
}
7576

76-
77+
#?rakudo.jvm skip 'RT #124279'
7778
#?niecza skip 'Excess arguments to CORE Cool.match'
7879
{
7980
is 'abecidofug'.match(/<[aeiou]>./, :nth(1,3,5), :x(2)).join('|'),
@@ -91,6 +92,7 @@ my $data = "f fo foo fooo foooo fooooo foooooo";
9192

9293
# test that non-monotonic items in :nth lists are ignored
9394
#?niecza todo
95+
#?rakudo.jvm skip 'RT #124279'
9496
{
9597
is 'abacadaeaf'.match(/a./, :nth(2, 1, 4)).join(', '),
9698
'ac, ae', 'non-monotonic items in :nth are ignored';

0 commit comments

Comments
 (0)