Skip to content

Commit 987ade2

Browse files
committed
Unfudge some bigint tests; remove a stray say.
1 parent 6ca8c15 commit 987ade2

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

S02-literals/numeric.t

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ ok 1+1i ~~ Numeric, '1+1i is Numeric';
2828
nok 1+1i ~~ Real, '1+1i is not Real';
2929

3030
# RT #74640
31-
#?rakudo skip 'bigints (noauto)'
3231
is_approx 3.14159265358979323846264338327950288419716939937510e0,
3332
3.141592, 'very long Num literals';
3433

S03-operators/arith.t

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,9 +292,8 @@ dies_ok( { $x = 0; say 3 div $x; }, 'Division by zero dies and is catchable with
292292
dies_ok( { $x := 0; say 3 div $x; }, 'Division by zero dies and is catchable with VRef variables');
293293

294294
# This is a rakudo regression wrt bignum:
295-
#?rakudo skip 'bigint'
296295
{
297-
my $f = 1; $f *= $_ for 2..25; say $f;
296+
my $f = 1; $f *= $_ for 2..25;
298297
ok $f == 15511210043330985984000000,
299298
'Can calcualte 25! without loss of precision';
300299
ok 2**65 == 36893488147419103232,

0 commit comments

Comments
 (0)