Skip to content

Commit

Permalink
[jvm] Fix test skipping
Browse files Browse the repository at this point in the history
  • Loading branch information
pmurias committed Sep 2, 2018
1 parent 31cb2aa commit 572edae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/nqp/081-radix.t
Expand Up @@ -60,7 +60,7 @@ test_radix_both(3,"3",0,2, 0,1,-1, "no digits consumed with digit outside radix"
test_radix_both(3,"۳",0,2, 0,1,-1, "no digits consumed with unicode digit outside radix");

if nqp::getcomp('nqp').backend.name eq 'jvm' {
skip("radix can't yet handle fancy unicode stuff on the jvm", 4*3*2);
skip("radix can't yet handle fancy unicode stuff on the jvm", 4*(6 + 3));
} else {
test_radix_both(10,"۳",0,2, 3,10,1, "extended arabic-indic digit three");
test_radix_both(10,"۳۳",0,2, 33,100,2, "extended arabic-indic digit three");
Expand Down

0 comments on commit 572edae

Please sign in to comment.