[svn:parrot] r38087 - trunk/t/pmc

Infinoid at svn.parrot.org Infinoid at svn.parrot.org
Sun Apr 12 15:55:17 UTC 2009


Author: Infinoid
Date: Sun Apr 12 15:55:16 2009
New Revision: 38087
URL: https://trac.parrot.org/parrot/changeset/38087

Log:
[t] Work around a crash in the ICU library.

Modified:
   trunk/t/pmc/codestring.t

Modified: trunk/t/pmc/codestring.t
==============================================================================
--- trunk/t/pmc/codestring.t	Sun Apr 12 10:14:56 2009	(r38086)
+++ trunk/t/pmc/codestring.t	Sun Apr 12 15:55:16 2009	(r38087)
@@ -186,8 +186,8 @@
     is($I0, 0x266d, "MUSIC FLAT SIGN")
     $I0 = code.'charname_to_ord'('RECYCLING SYMBOL FOR TYPE-1 PLASTICS')
     is($I0, 0x2673, "RECYCLING SYMBOL FOR TYPE-1 PLASTICS")
-    $I0 = code.'charname_to_ord'('<no such symbol>')
-    is($I0, -1, '<no such symbol>')
+    $I0 = code.'charname_to_ord'('no such symbol')
+    is($I0, -1, 'no such symbol')
 .end
 
 .sub 'lineof_tests'


More information about the parrot-commits mailing list