Skip to content

Commit

Permalink
[jvm] Unskip now passing tests
Browse files Browse the repository at this point in the history
Fixed with nqp commit 7eaebf5abd
  • Loading branch information
usev6 committed Dec 12, 2017
1 parent 84e2f22 commit ba86027
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 9 deletions.
4 changes: 2 additions & 2 deletions S02-types/list.t
Expand Up @@ -154,8 +154,8 @@ subtest '.sum can handle Junctions' => {
ok $sum !== 42, 'sum is correct (6)';
}

#?rakudo.jvm skip 'RT #130160 works when run standalone, maybe wrong multi selected'
{ # RT#130160
# RT#130160
{
my @a := <a b c>[0..2, 0..2].flat.cache;
@a.Bool;
@a.elems;
Expand Down
1 change: 0 additions & 1 deletion S03-metaops/reduce.t
Expand Up @@ -641,7 +641,6 @@ is prefix:<[**]>(2,3,4), 2417851639229258349412352, "Reduce ** can autogen witho

{
is ([&&] |0), 0, "slipped args work with reduce";
#?rakudo.jvm skip 'RT #129153 Type check failed in binding to &b; expected Callable but got Int (2)'
is ([&&] 1,|(2,3,4)), 4, "slipped args work with reduce";
}

Expand Down
2 changes: 0 additions & 2 deletions S16-io/comb.t
Expand Up @@ -82,7 +82,6 @@ for "x",/x/ -> $sep {
for "", /./ -> $sep {
my $text = "abcde";
my @clean = <a b c d e>;
#?rakudo.jvm skip 'Type check failed in binding to parameter "$size"; expected Int but got Str ("")'
test-comb($text,@clean,$sep);
}

Expand All @@ -97,7 +96,6 @@ for /.c./ -> $sep {
for "" -> $sep {
my $text = "";
my @clean;
#?rakudo.jvm skip 'Type check failed in binding to parameter "$size"; expected Int but got Str ("")'
test-comb($text,@clean,$sep);
}

Expand Down
2 changes: 0 additions & 2 deletions S32-io/io-cathandle.t
Expand Up @@ -66,8 +66,6 @@ subtest 'comb method' => {
\(2, 3), \(/../), \(/../, 2), \(/<:alpha>/, 3);
plan +@tests;

#?rakudo.jvm skip 'Type check failed in binding to parameter $size; expected Int but got Str ("")'
#?DOES 12
is-deeply cat.comb(|$_), $str.comb(|$_), .perl for @tests;
}

Expand Down
2 changes: 0 additions & 2 deletions S32-str/comb.t
Expand Up @@ -97,7 +97,6 @@ is (<a ab>, <bc ad ba>).comb(rx:Perl5/\S*a\S*/), <a ab ad ba>,

# RT #123760
{
#?rakudo.jvm 6 skip 'weird error, looks like wrong multi is used, RT #128580'
is comb("o","ooo"), <o o o>, "comb(Str,Str)";
is "qqq".comb("q"), <q q q>, "Str.comb(Str)";
is "asdf".comb("z"), (), "Str.comb(Str) with no match";
Expand Down Expand Up @@ -179,7 +178,6 @@ subtest 'edge-case combers' => {
}
plan +@tests;
for @tests -> ($str, $expected, |args) {
#?rakudo.jvm skip 'Type check failed in binding to parameter "$pattern"; expected Regex but got Str ("")'
is-deeply $str.comb(|args), $expected, "$str.perl() with {args.perl}";
}
}
Expand Down

0 comments on commit ba86027

Please sign in to comment.