Skip to content

Commit

Permalink
JVM unfudges
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed Apr 13, 2014
1 parent caeebea commit 9906142
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 6 deletions.
2 changes: 0 additions & 2 deletions S02-types/isDEPRECATED.t
Expand Up @@ -19,7 +19,6 @@ my $line;

$line = $?LINE; a();
is $a, 1, 'was "a" really called';
#?rakudo.jvm todo 'tracebacks in deprecations'
is Deprecation.report, qq:to/TEXT/.chop.subst(/\r/, '', :g), 'right deprecation for a()';
Saw 1 call to deprecated code during execution.
================================================================================
Expand Down Expand Up @@ -120,7 +119,6 @@ TEXT
$line = $?LINE; C.new.foo;
is $C, 1, 'was "C.new.foo" really called';
#?rakudo.jvm todo 'tracebacks in deprecations'
is Deprecation.report, qq:to/TEXT/.chop.subst(/\r/, '', :g), 'right deprecation for C.new.foo';
Saw 1 call to deprecated code during execution.
================================================================================
Expand Down
1 change: 0 additions & 1 deletion S04-phasers/rvalue.t
Expand Up @@ -59,7 +59,6 @@ plan 16;
}

#?niecza todo 'block returns no value'
#?rakudo.jvm 3 todo "nigh"
is $check(), 'BC', 'CHECK {} runs only once';
#?niecza todo 'block returns no value'
is $check_val, 'BC', 'CHECK {} as rval is its ret val';
Expand Down
2 changes: 1 addition & 1 deletion S05-mass/properties-derived.t
Expand Up @@ -539,7 +539,7 @@ ok("\x[D7A4]\x[C99D]" ~~ m/<:Assigned>/, q<Match unanchored (Any non-Cn characte
# Unassigned # Synonym for \p{Cn}


#?rakudo.jvm 7 todo 'isUnassigned not implemented'
#?rakudo.jvm todo 'isUnassigned not implemented'
#?niecza 3 todo
#?pugs todo
ok("\x[110E9]" ~~ m/^<:Unassigned>$/, q<Match (Synonym for \p{Cn})> );
Expand Down
2 changes: 0 additions & 2 deletions S32-str/sprintf.t
Expand Up @@ -253,9 +253,7 @@ is Date.new(-13_000_000_000, 1, 1), '-13000000000-01-01
is sprintf("%.0f", 1.969), "2", '%.0f of 1.969 should be 2';
#?rakudo todo 'buggy'
is sprintf("%.1f", 1.969), "2.0", '%.1f of 1.969 should be 2.0';
#?rakudo.jvm todo 'buggy'
is sprintf("%.2f", 1.969), "1.97", '%.2f of 1.969 should be 1.97';
#?rakudo.jvm todo 'buggy'
is sprintf("%.3f", 1.969), "1.969", '%.3f of 1.969 should be 1.969';
}

Expand Down

0 comments on commit 9906142

Please sign in to comment.