Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Unfudge passing tests for rakudo.jvm
  • Loading branch information
usev6 committed Nov 14, 2015
1 parent 3f3e870 commit e0e0b80
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion S03-operators/increment.t
Expand Up @@ -71,9 +71,9 @@ is($moo, 0, "var was not touched");

# test incrementing literals
# all of those can be detected at compile time
#?rakudo.jvm todo "RT #126531"
{
throws-like ' 4++ ', X::Multi::NoMatch, "can't postincrement a literal number";
#?rakudo.jvm 3 todo "RT #126531"
throws-like ' ++4 ', X::Multi::NoMatch, "can't preincrement a literal number";
throws-like ' 4-- ', X::Multi::NoMatch, "can't postdecrement a literal number";
throws-like ' --4 ', X::Multi::NoMatch, "can't predecrement a literal number";
Expand Down
1 change: 0 additions & 1 deletion S16-filehandles/io.t
Expand Up @@ -308,7 +308,6 @@ nok $filename.IO ~~ :e, '... and the tempfile is gone, really';
#?rakudo.moar todo 'Too late to change filehandle encoding RT #125079'
lives-ok { $fh.encoding('ISO-8859-1') }, "reset input fh encoding";
$s = '';
#?rakudo.jvm todo 'will fail due to above failures RT #125080'
lives-ok { $s ~= $fh.getc for 1..3; }, "iso-8859-1 chars from fh";
#?rakudo.jvm todo 'will fail due to above failures RT #125081'
is $s, 'a垄每', "correct iso-8859-1 chars from fh";
Expand Down
1 change: 0 additions & 1 deletion S16-filehandles/io_in_while_loops.t
Expand Up @@ -41,7 +41,6 @@ my $filename = 'tempfile_io_in_while_loop';
ok(unlink($filename), 'file has been removed');

# RT #122971
#?rakudo.jvm todo 'Multi-line separators on JVM'
{
spurt($filename, q:to/FASTAISH/.subst(/\r\n/, "\n"));
>roa1_drome Rea guano receptor type III >> 0.1
Expand Down

0 comments on commit e0e0b80

Please sign in to comment.