Skip to content

Commit 8a9dbc0

Browse files
committed
various rakudo unfudges
1 parent e0f4d0f commit 8a9dbc0

File tree

4 files changed

+0
-4
lines changed

4 files changed

+0
-4
lines changed

S06-macros/macros-d1.t

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,6 @@ plan 12;
113113
is id('x'), 'x', 'macro can return its param';
114114
}
115115

116-
#?rakudo skip 'Null PMC access'
117116
#?pugs skip 'Nil'
118117
{
119118
macro funny_nil { quasi { {;}() } }

S06-operator-overloading/sub.t

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,6 @@ Testing operator overloading subroutines
389389
#?rakudo todo 'RT 65638'
390390
#?niecza todo
391391
is eval('sub infix:<#>($a, $b) { 42 }; 5 # 5'), 42, 'infix:<comment char>($a, $b)';
392-
#?rakudo skip 'mixed overloaded operators of different arities'
393392
is eval('multi sub infix:<+>() { 42 }; 5 + 5'), 10, 'infix:<+>()';
394393
is eval('sub infix:<+>($a, $b) { 42 }; 5 + 5'), 42, 'infix:<+>($a, $b)';
395394
}

S32-num/abs.t

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ is( abs(-Inf), Inf, 'absolute value of -Inf is Inf');
3232

3333
is( abs("-10"), 10, 'absolute value of "-10" is 10');
3434

35-
#?rakudo skip "abs(70596).WHAT parsing as abs(70596.WHAT)"
3635
is( abs(70596).WHAT.gist, 70596.abs.WHAT.gist, 'abs(x).WHAT parses as x.abs.WHAT' );
3736

3837
done;

S32-str/substr.t

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ plan 90;
6767
#?pugs skip 'chrs'
6868
{ # codepoints greater than 0xFFFF
6969
my $str = (0x10426, 0x10427).list.chrs;
70-
#?rakudo skip 'Str.codes'
7170
is $str.codes, 2, "Sanity check string";
7271
is substr($str, 0, 1), 0x10426.chr, "Taking first char of Deseret string";
7372
is substr($str, 1, 1), 0x10427.chr, "Taking second char of Deseret string";

0 commit comments

Comments
 (0)