Skip to content

Commit a099498

Browse files
committed
Unfudge tests that should no longer be a problem.
1 parent 714abc9 commit a099498

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

S03-operators/overflow.t

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,6 @@ sub tryeq_sloppy ($lhs, $rhs, $todo1 = '') {
263263
}
264264

265265
# RT #125938
266-
#?rakudo skip 'fails on OSX; RT 125938'
267266
throws-like '2**10000000000', X::Numeric::Overflow,
268267
'attempting to raise to a huge power throws';
269268

S32-num/power.t

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,8 @@ is 0 ** $big-e, 0, "0 ** $big-e == 0";
2121
is 1 ** $big-e, 1, "1 ** $big-e == 1";
2222
is 1e0 ** $big-e, 1, "1e0 ** $big-e == 1";
2323
isa-ok 1e0 ** $big-e, Num, "1e0 ** $big-e is a Num";
24-
#?rakudo.moar skip 'big exponents RT #124798: passes on OSX, fails on Linux'
2524
is (-1) ** $big-e, 1, "-1 ** $big-e == 1";
26-
#?rakudo.moar skip 'big exponents RT #124798'
2725
is (-1) ** $big-o, -1, "-1 ** $big-o == -1";
28-
#?rakudo.jvm 3 todo 'big exponents RT #127493'
29-
#?rakudo.moar 3 skip 'overflow exception is not thrown on OSX RT #127500'
3026
#?niecza skip "Slow and wrong"
3127
throws-like { EVAL qq[ 2 ** $big-e] }, $xno, " 2 ** $big-e";
3228
#?niecza 2 skip "Slow and wrong"
@@ -111,12 +107,8 @@ is 0⁴⁵⁵³⁵³⁵³⁴⁵³⁶⁴⁵³⁵³⁴⁵, 0, "0⁴⁵⁵³⁵³
111107
is 1⁴⁵⁵³⁵³⁵³⁴⁵³⁶⁴⁵³⁵³⁴⁵, 1, "1⁴⁵⁵³⁵³⁵³⁴⁵³⁶⁴⁵³⁵³⁴⁵ == 1";
112108
is 1e0⁴⁵⁵³⁵³⁵³⁴⁵³⁶⁴⁵³⁵³⁴⁵, 1, "1e0⁴⁵⁵³⁵³⁵³⁴⁵³⁶⁴⁵³⁵³⁴⁵ == 1";
113109
isa-ok 1e0⁴⁵⁵³⁵³⁵³⁴⁵³⁶⁴⁵³⁵³⁴⁵, Num, "1e0⁴⁵⁵³⁵³⁵³⁴⁵³⁶⁴⁵³⁵³⁴⁵ is a Num";
114-
#?rakudo.moar skip 'big exponents RT #124798: passes on OSX, fails on Linux'
115110
is (-1)⁴⁵⁵³⁵³⁵³⁴⁵³⁶⁴⁵³⁵³⁵⁴, 1, "(-1)⁴⁵⁵³⁵³⁵³⁴⁵³⁶⁴⁵³⁵³⁵⁴ == 1";
116-
#?rakudo.moar todo 'big exponents RT #124798'
117-
#?rakudo.jvm 4 todo 'big exponents RT #124798 and RT #127493'
118111
is (-1)⁴⁵⁵³⁵³⁵³⁴⁵³⁶⁴⁵³⁵³⁴⁵, -1, "(-1)⁴⁵⁵³⁵³⁵³⁴⁵³⁶⁴⁵³⁵³⁴⁵ == -1";
119-
#?rakudo.moar 3 skip 'overflow exception is not thrown on OSX RT #127500'
120112
#?niecza skip "Slow and wrong"
121113
throws-like { EVAL qq[2⁴⁵⁵³⁵³⁵³⁴⁵³⁶⁴⁵³⁵³⁴⁵] }, $xno, "2⁴⁵⁵³⁵³⁵³⁴⁵³⁶⁴⁵³⁵³⁴⁵ throws";
122114
#?niecza 2 skip "Slow and wrong"

0 commit comments

Comments
 (0)