Skip to content

Commit

Permalink
Un-skip these bigint-using tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
ShimmerFairy committed Sep 2, 2015
1 parent e6b961b commit be1f8da
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion S32-list/pick.t
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,6 @@ is (<a b c d>.pick(*).sort).Str, 'a b c d', 'pick(*) returns all the items in th
try { %seen{$_} = 1 for (1 .. (10**1000) ).pick(50); }
#?rakudo.jvm todo '"Cannot .pick from an infinite list" (but not from CLI)'
is %seen.keys.elems, 50, 'Range.pick produces uniq elems in huge range';
#?rakudo skip 'val() fails on bigints'
ok (so 1 <= all(%seen.keys) <= 10**1000), '... and all the elements are in range';
}

Expand Down
1 change: 0 additions & 1 deletion S32-str/numeric.t
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ check '0000123', Int, 123;
check '1_2_3', Int, 123;
check '+123', Int, 123;
check '-123', Int, -123;
#?rakudo skip 'val() dies on bigints'
check '3433683820292512484657849089281', Int, 3**64;
f 'a+123';
f '123foo';
Expand Down
1 change: 0 additions & 1 deletion integration/advent2009-day09.t
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ throws-like {EVAL 'namen(@te)' },
'Autoflattening doesnt exist, no exception object';
is (namen(|@te)), ('a','b','c'), "Put a | in front of the variable, and you're ok!";

#?rakudo skip 'val() dies on bigints'
is <734043054508967647390469416144647854399310>.comb(/.**7/).join('|') , '7340430|5450896|7647390|4694161|4464785|4399310' , 'Test one liner at end of post (part1)';
{
is '7340430'.fmt("%b").trans("01" => " #") , '### ## ### ' , 'Test one liner at end of post (part2)';
Expand Down

0 comments on commit be1f8da

Please sign in to comment.