Author: particle
Date: Thu May  4 09:58:46 2006
New Revision: 12501

Modified:
   trunk/t/dynpmc/perlint.t

Log:
[dynpmc] fix silly perlint test bug with 'skip'

Modified: trunk/t/dynpmc/perlint.t
==============================================================================
--- trunk/t/dynpmc/perlint.t    (original)
+++ trunk/t/dynpmc/perlint.t    Thu May  4 09:58:46 2006
@@ -6,12 +6,9 @@
 use lib qw( . lib ../lib ../../lib );
 
 use Test::More;
-use Parrot::Test;
+use Parrot::Test tests => 75;
 use Parrot::Config;
 
-## test count varies depending on gmp installation
-plan tests => ( $PConfig{gmp} ? 75 : 72 );
-
 
 =head1 NAME
 
@@ -2102,7 +2099,7 @@
 OUT
 
 SKIP: {
-    skip 3 => 'no bigint lib' unless $PConfig{gmp};
+    skip 'no bigint lib' => 3 unless $PConfig{gmp};
 
 pasm_output_is($load_perl . <<'CODE', <<'OUTPUT', "sub other int");
      new P0, .BigInt

Reply via email to