gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog testsuite/actionscript.all/Stri...


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog testsuite/actionscript.all/Stri...
Date: Thu, 07 Feb 2008 08:15:07 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  08/02/07 08:15:07

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

Log message:
        fix a bogus test line, xcheck->check now succeeding tests, add the rcsid
        string.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.5581&r2=1.5582
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/actionscript.all/String.as?cvsroot=gnash&r1=1.39&r2=1.40

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.5581
retrieving revision 1.5582
diff -u -b -r1.5581 -r1.5582
--- ChangeLog   7 Feb 2008 03:20:44 -0000       1.5581
+++ ChangeLog   7 Feb 2008 08:15:06 -0000       1.5582
@@ -1,3 +1,8 @@
+2008-02-07 Sandro Santilli <address@hidden>
+
+       * testsuite/actionscript.all/String.as: fix a bogus test line,
+         xcheck->check now succeeding tests, add the rcsid string.
+
 2008-02-06  Rob Savoye  <address@hidden>
 
        * packaging/snapshot.am, alp.am, bsd.am, deb.am, ipkg.am, rpm.am:

Index: testsuite/actionscript.all/String.as
===================================================================
RCS file: /sources/gnash/gnash/testsuite/actionscript.all/String.as,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -b -r1.39 -r1.40
--- testsuite/actionscript.all/String.as        6 Feb 2008 12:00:39 -0000       
1.39
+++ testsuite/actionscript.all/String.as        7 Feb 2008 08:15:07 -0000       
1.40
@@ -16,6 +16,8 @@
 
 // Original author: Mike Carlson - June 19th, 2006
 
+rcsid="$Id: String.as,v 1.40 2008/02/07 08:15:07 strk Exp $";
+
 #include "check.as"
 
 check_equals(typeof(String), 'function');
@@ -297,7 +299,7 @@
 check_equals (ord("ö"), 246);
 check_equals (ord("Ϧ"), 998);
 #else // version <= 5
-xcheck_equals (typeof(chr(486)), string);
+check_equals (typeof(chr(486)), 'string');
 check_equals (chr(865), "a");
 check_equals (ord("ö"), 195);
 check_equals (ord("Ö"), 195);
@@ -324,9 +326,9 @@
 check_equals (a.slice(3,5), "ge");
 check_equals (a.charCodeAt(9), 246);
 #else
-xcheck_equals (a.length, 16);
-xcheck_equals (a.slice(3,5), "ng");
-xcheck_equals (a.charCodeAt(10), 195);
+check_equals (a.length, 16);
+check_equals (a.slice(3,5), "ng");
+check_equals (a.charCodeAt(10), 195);
 #endif
 
 // see check.as




reply via email to

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