Skip to content

Commit 9d48699

Browse files
committed
rakudo fudging
1 parent 1c1df5b commit 9d48699

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

S29-context/die.t

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Tests for the die() builtin
1313
=end pod
1414

1515
{
16+
#?rakudo todo 'nom regression'
1617
ok( !defined( try { die "foo"; 1; } ), 'die in try cuts off execution');
1718
my $error = $!;
1819
is($error, 'foo', 'got $! correctly');
@@ -45,7 +46,7 @@ is ({ try { if 1 { die } else { die } }; 42 }()), 42, "die in if";
4546
my sub die_in_return () { return die };
4647
is ({ try { die_in_return(); 23 }; 42 }()), 42, "die in return";
4748

48-
#?rakudo todo 'RT #67374'
49+
#?rakudo skip 'RT #67374'
4950
{
5051
eval 'die "bughunt"';
5152
my $error = "$!";

S32-hash/push.t

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,14 @@ my %ref2 = (a => [1, 4, 5], b => 2, c => 3);
1717
%h.push: 'b', 2, 'a', 1, 'c', 3;
1818
is_deeply %h, %ref1, 'basic Hash.push with alternating items';
1919
%h.push: (:a(4), :a(5));
20+
#?rakudo todo 'nom regression'
2021
is_deeply %h, %ref2, 'stacking push works with pairs';
2122

2223
my %g;
2324
%g.push: (a => 1), (c => 3), (b => 2);
2425
is_deeply %g, %ref1, 'basic Hash.push with pairs ';
2526
%g.push: 'a', 4, 'a', 5;
27+
#?rakudo todo 'nom regression'
2628
is_deeply %g, %ref2, 'stacking push worsk with alternating items';
2729
}
2830

0 commit comments

Comments
 (0)