Skip to content

Commit b55f1ae

Browse files
committed
Merge branch 'master' of https://github.com/perl6/roast
2 parents 5394f05 + dc8ff6c commit b55f1ae

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

S02-types/baghash.t

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ sub showkv($x) {
122122

123123
{
124124
my $a = (1,2,3,2,2,2,2).BagHash;
125-
is $a.kv.sort({ .[0] }), ((1, 1), (2, 5), (3, 1)).list.sort, "BagHash.kv returns list of keys and values";
125+
is $a.kv.tree.sort({ .[0] }), ([1, 1], [2, 5], [3, 1]).list.sort, "BagHash.kv returns list of keys and values";
126126
}
127127

128128
#?rakudo skip "Odd number of elements"
@@ -374,7 +374,8 @@ sub showkv($x) {
374374
ok @a.grep(* eq 'a').elems <= 1, '.grab(2) returned at most one "a"';
375375
is @a.grep(* eq 'b').elems, 2 - @a.grep(* eq 'a').elems, '.grab(2) and the rest are "b"';
376376
is $b.total, 0, '.grab *should* change BagHash';
377-
#?rakudo.jvm todo "RT #120407"
377+
#?rakudo.jvm todo "RT 120407"
378+
#?rakudo.moar todo "RT 120407"
378379
is $b.elems, 0, '.grab *should* change BagHash';
379380
}
380381

@@ -387,7 +388,8 @@ sub showkv($x) {
387388
is @a.grep(* eq 'a').elems, 1, '.grab(*) (1)';
388389
is @a.grep(* eq 'b').elems, 2, '.grab(*) (2)';
389390
is $b.total, 0, '.grab *should* change BagHash';
390-
#?rakudo.jvm todo "RT #120407"
391+
#?rakudo.jvm todo "RT 120407"
392+
#?rakudo.moar todo "RT 120407"
391393
is $b.elems, 0, '.grab *should* change BagHash';
392394
}
393395

S04-phasers/enter-leave.t

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,8 @@ plan 21;
190190

191191
#?niecza todo '@!'
192192
#?pugs todo
193-
#?rakudo.jvm skip 'unwind'
193+
#?rakudo.jvm skip 'unwind, RT 121530'
194+
#?rakudo.moar skip 'unwind, RT 121530'
194195
{
195196
my $str;
196197
try {

S04-phasers/pre-post.t

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ dies_ok { $pt.test(1) }, 'POST receives return value as $_ (failure)';
115115
}
116116
}
117117
#?pugs todo
118+
#?rakudo.moar todo 'failing PRE block should not run any other phasers, RT 121531'
118119
is $str, '(', 'failing PRE runs nothing else';
119120
}
120121

@@ -157,8 +158,7 @@ dies_ok { $pt.test(1) }, 'POST receives return value as $_ (failure)';
157158
}
158159

159160
#?niecza skip 'unspecced'
160-
#?rakudo.parrot todo "POST and exceptions"
161-
#?rakudo.jvm skip "POST and exceptions"
161+
#?rakudo skip "POST and exceptions"
162162
{
163163
try {
164164
POST { 0 }

0 commit comments

Comments
 (0)