gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] gnash/testsuite/actionscript.all String.as


From: Sandro Santilli
Subject: [Gnash-commit] gnash/testsuite/actionscript.all String.as
Date: Tue, 15 Jan 2008 11:35:49 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  08/01/15 11:35:49

Modified files:
        testsuite/actionscript.all: String.as 

Log message:
        add another test for primitive string - string object concatenation, 
failing as for bug #22024. fix will follow

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/actionscript.all/String.as?cvsroot=gnash&r1=1.33&r2=1.34

Patches:
Index: String.as
===================================================================
RCS file: /sources/gnash/gnash/testsuite/actionscript.all/String.as,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -b -r1.33 -r1.34
--- String.as   15 Jan 2008 11:15:15 -0000      1.33
+++ String.as   15 Jan 2008 11:35:49 -0000      1.34
@@ -16,7 +16,7 @@
 
 // Original author: Mike Carlson - June 19th, 2006
 
-rcsid="$Id: String.as,v 1.33 2008/01/15 11:15:15 strk Exp $";
+rcsid="$Id: String.as,v 1.34 2008/01/15 11:35:49 strk Exp $";
 
 #include "check.as"
 
@@ -468,8 +468,12 @@
 r = "s:"+s;
 check_equals(r, "s:hello");
 
+s = new String("");
+r = "s:"+s;
+check_equals(r, "s:");
+
 #if OUTPUT_VERSION < 6
- check_totals(174);
+ check_totals(175);
 #else
- check_totals(195);
+ check_totals(196);
 #endif




reply via email to

[Prev in Thread] Current Thread [Next in Thread]