[svn:parrot] r36173 - in trunk/t: op pmc

particle at svn.parrot.org particle at svn.parrot.org
Fri Jan 30 15:13:29 UTC 2009


Author: particle
Date: Fri Jan 30 15:13:28 2009
New Revision: 36173
URL: https://trac.parrot.org/parrot/changeset/36173

Log:
[t] unskip -0 tests no longer failing on windows

Modified:
   trunk/t/op/arithmetics.t
   trunk/t/pmc/complex.t
   trunk/t/pmc/float.t

Modified: trunk/t/op/arithmetics.t
==============================================================================
--- trunk/t/op/arithmetics.t	Fri Jan 30 14:52:38 2009	(r36172)
+++ trunk/t/op/arithmetics.t	Fri Jan 30 15:13:28 2009	(r36173)
@@ -170,7 +170,7 @@
 #
 
 SKIP: {
-    skip 'failing on your platform' => 1 if $^O =~ m/win32|openbsd/i;
+    skip 'failing on your platform' => 1 if $^O =~ m/openbsd/i;
 
 pasm_output_is( <<'CODE', <<OUTPUT, "turn a native number into its negative" );
         set N0, 0

Modified: trunk/t/pmc/complex.t
==============================================================================
--- trunk/t/pmc/complex.t	Fri Jan 30 14:52:38 2009	(r36172)
+++ trunk/t/pmc/complex.t	Fri Jan 30 15:13:28 2009	(r36173)
@@ -1041,7 +1041,6 @@
     .complex_op_is("-2+3i", "3.590565+0.530921i", 'sinh' )
     .complex_op_is("-2-3i", "3.590565-0.530921i", 'sinh' )
 
-    eq osname, "MSWin32", fail
     eq osname, "openbsd", fail
     .complex_op_is("0-2i", "-0.000000-0.909297i", 'sinh' )
     .complex_op_is("0+2i", "-0.000000+0.909297i", 'sinh' )

Modified: trunk/t/pmc/float.t
==============================================================================
--- trunk/t/pmc/float.t	Fri Jan 30 14:52:38 2009	(r36172)
+++ trunk/t/pmc/float.t	Fri Jan 30 15:13:28 2009	(r36173)
@@ -504,7 +504,7 @@
 OUTPUT
 
 SKIP: {
-    skip 'failing on your platform' => 1 if $^O =~ m/win32|openbsd/i;
+    skip 'failing on your platform' => 1 if $^O =~ m/openbsd/i;
 
 pasm_output_like( << 'CODE', << 'OUTPUT', "neg 0" );
     new P0, ['Float']


More information about the parrot-commits mailing list