From 82f7dc2820efbdf435841e143cb43cdfffc345b6 Mon Sep 17 00:00:00 2001 From: Moritz Lenz Date: Tue, 15 Nov 2011 11:01:14 +0100 Subject: [PATCH] s/todo/skip/ some Inf related tests which bigint branch will break completely --- S02-types/infinity.t | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/S02-types/infinity.t b/S02-types/infinity.t index 63461914ee..a1be53f0c0 100644 --- a/S02-types/infinity.t +++ b/S02-types/infinity.t @@ -19,7 +19,7 @@ plan 13; ok( $x eq '-Inf', 'negative string equal' ); } -#?rakudo todo 'integer Inf' +#?rakudo skip 'integer Inf' { my $x = Inf.Int; ok( $x == Inf, 'int numeric equal' ); @@ -27,7 +27,7 @@ plan 13; ok( $x eq 'Inf', 'int string equal' ); } -#?rakudo todo 'integer Inf' +#?rakudo skip 'integer Inf' { my $x = ( -Inf ).Int; ok( $x == -Inf, 'int numeric equal' ); @@ -44,7 +44,7 @@ plan 13; # ~Inf eq ~Inf # true ok truncate(Inf) ~~ Inf, 'truncate(Inf) ~~ Inf'; -#?rakudo 3 todo 'Int conversion of NaN and Inf' +#?rakudo 3 skip 'Int conversion of NaN and Inf' #?niecza 3 todo ok NaN.Int === NaN, 'Inf.Int === Int'; ok Inf.Int === Inf, 'Inf.Int === Int';