From 3e142894cf3f651abb77a7f9dd5fc738092e6e80 Mon Sep 17 00:00:00 2001 From: Zoffix Znet Date: Sat, 15 Oct 2016 19:27:20 -0400 Subject: [PATCH] Revert "Temporarily comment out tests failing on JVM" This reverts commit 298e2281ec01c7c61e446024ca59078e3a3748bb. Unfudges failing JVM tests --- t/qast/01-qast.t | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/t/qast/01-qast.t b/t/qast/01-qast.t index b40e3a24c0..c14123cf75 100644 --- a/t/qast/01-qast.t +++ b/t/qast/01-qast.t @@ -1484,11 +1484,10 @@ test_qast_result( $closure1().inc; $closure1().inc; is($closure1().get, '103', "statevar is shared between calls to a closures"); - skip('JVM failure; fudge for release', 3); - # is($closure2().get, '100', "a new closure gets it's own copy of the statevar"); + is($closure2().get, '100', "a new closure gets it's own copy of the statevar"); $closure2().inc; - # is($closure2().get, '101', "...that get preserved across calls"); - # is($closure1().get, '103', "...and is independent from the first closure"); + is($closure2().get, '101', "...that get preserved across calls"); + is($closure1().get, '103', "...and is independent from the first closure"); } ); @@ -1550,8 +1549,8 @@ test_qast_result( ) ), -> $r { - skip('JVM failure; fudge for release', 2); # ok(nqp::istype($r, $int_boxer), 'an automatically boxed int is of the correct type'); - # ok($r.twice eq '246', '...and it has the correct value'); + ok(nqp::istype($r, $int_boxer), 'an automatically boxed int is of the correct type'); + ok($r.twice eq '246', '...and it has the correct value'); } ); }