Skip to content

Commit 3ec12fb

Browse files
committed
rakudofudge new tests
1 parent 2d6c012 commit 3ec12fb

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

S32-list/pick.t

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@ is (<a b c d>.pick(*).sort).Str, 'a b c d', 'pick(*) returns all the items in th
157157
ok (so 1 < all(%seen.keys) < 1_000_000), '... and all the elements are in range';
158158
}
159159

160+
#?rakudo skip '.pick on huge integer ranges'
160161
{
161162
my %seen;
162163
%seen{$_} = 1 for (1 .. (10**1000) ).pick(50);

S32-num/log.t

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ is_approx(log10(-1i), -0.5i * $pi / log(10), "got the log10 of -i (complex unit)
7272
is_approx( (-1i).log10(), -0.5i*$pi / log(10), " (i).log10 = - i * pi/(2 log(10))");
7373
isa_ok( log10(-1+0i), Complex, 'log10 of a complex returns a complex, not a list');
7474

75+
#?rakudo todo 'HugeInt.log'
7576
is_approx (10 ** 1000).log10, 1000, "Can take the log of very large Ints";
7677

7778
# vim: ft=perl6

0 commit comments

Comments
 (0)