[svn:parrot] r42547 - trunk/t/op

mikehh at svn.parrot.org mikehh at svn.parrot.org
Tue Nov 17 10:58:18 UTC 2009


Author: mikehh
Date: Tue Nov 17 10:58:17 2009
New Revision: 42547
URL: https://trac.parrot.org/parrot/changeset/42547

Log:
fix test failure on g++ 4.4.1 (with --optimize) on i386 - TT #1275

Modified:
   trunk/t/op/comp.t

Modified: trunk/t/op/comp.t
==============================================================================
--- trunk/t/op/comp.t	Tue Nov 17 10:19:34 2009	(r42546)
+++ trunk/t/op/comp.t	Tue Nov 17 10:58:17 2009	(r42547)
@@ -148,7 +148,10 @@
     new $P0, 'Float'
     set $P0, -1.2
     new $P1, 'String'
-    set $P1, "-1.2"
+#
+#   fix problems with g++ 4.4.1 (with --optimize) on i386 - TT #1275
+#   set $P1, "-1.2"
+    set $P1, "-1.2000000000"
     eq_num $P0, $P1, OK
     ok(0, "not eq_num")
     .return()


More information about the parrot-commits mailing list