[svn:parrot] r47120 - in trunk/t: dynoplibs op

plobsing at svn.parrot.org plobsing at svn.parrot.org
Sun May 30 00:39:48 UTC 2010


Author: plobsing
Date: Sun May 30 00:39:48 2010
New Revision: 47120
URL: https://trac.parrot.org/parrot/changeset/47120

Log:
adjust appropriate skips for non-GMP users

Modified:
   trunk/t/dynoplibs/pmc_pow.t
   trunk/t/op/arithmetics_pmc.t

Modified: trunk/t/dynoplibs/pmc_pow.t
==============================================================================
--- trunk/t/dynoplibs/pmc_pow.t	Sun May 30 00:13:16 2010	(r47119)
+++ trunk/t/dynoplibs/pmc_pow.t	Sun May 30 00:39:48 2010	(r47120)
@@ -36,7 +36,7 @@
     test_pow('Float')
 
     if gmp goto do_big_ones
-        skip( 22, "will not test BigInt or BigNum without gmp" )
+        skip( 2, "will not test BigInt or BigNum without gmp" )
         goto end
 
   do_big_ones:

Modified: trunk/t/op/arithmetics_pmc.t
==============================================================================
--- trunk/t/op/arithmetics_pmc.t	Sun May 30 00:13:16 2010	(r47119)
+++ trunk/t/op/arithmetics_pmc.t	Sun May 30 00:39:48 2010	(r47120)
@@ -34,7 +34,7 @@
     run_tests_for('Float')
 
     if gmp goto do_big_ones
-        skip( 22, "will not test BigInt or BigNum without gmp" )
+        skip( 20, "will not test BigInt or BigNum without gmp" )
         goto end
 
   do_big_ones:


More information about the parrot-commits mailing list