Skip to content

Commit e2174a8

Browse files
committed
Unfudge tests for JVM RT #126673, psch++
1 parent 0dd18f4 commit e2174a8

File tree

3 files changed

+0
-4
lines changed

3 files changed

+0
-4
lines changed

S03-operators/arith.t

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,6 @@ All uses of a zero modulus or divisor should 'die', and the
308308
throws-like { my $x := 0; 3 mod $x }, X::Numeric::DivideByZero,
309309
'Modulo zero with infix:<mod> dies and is catchable with VRef variables';
310310

311-
#?rakudo.jvm 3 skip 'RT #126673'
312311
throws-like { say 3 % 0 }, X::Numeric::DivideByZero,
313312
# expectedn => Int,
314313
# gotn => Failure,

S04-exceptions/fail.t

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ given (Failure.new()) {
3636
}
3737

3838
# RT #64990
39-
#?rakudo.jvm skip 'RT #126673'
4039
{
4140
our Int sub rt64990 { fail() }
4241
ok rt64990() ~~ Failure, 'sub typed Int can fail()';

S06-advanced/return.t

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -398,10 +398,8 @@ is Foo::official(), 44,
398398
sub return-Int ($x --> Int) { $x }
399399
is return-Int(42), 42, "Can return 42 through Int typecheck";
400400
is return-Int(Nil), Nil, "Can return Nil through Int typecheck";
401-
#?rakudo.jvm skip 'RT #126673'
402401
ok return-Int(Failure.new) ~~ Failure, "Can return Failure through Int typecheck";
403402
dies-ok { return-Int(42.0) }, "Can't return 42.0 through Int typecheck";
404-
#?rakudo.jvm todo 'code does not die'
405403
dies-ok { return-Int(Cool) }, "Can't return Cool through Int typecheck";
406404
}
407405
# vim: ft=perl6

0 commit comments

Comments
 (0)