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/toSt...


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog testsuite/actionscript.all/toSt...
Date: Fri, 28 Sep 2007 15:51:30 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  07/09/28 15:51:30

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

Log message:
                * testsuite/actionscript.all/toString_valueOf.as: more tests,
                  check->check_equals.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.4466&r2=1.4467
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/actionscript.all/toString_valueOf.as?cvsroot=gnash&r1=1.22&r2=1.23

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.4466
retrieving revision 1.4467
diff -u -b -r1.4466 -r1.4467
--- ChangeLog   28 Sep 2007 15:44:02 -0000      1.4466
+++ ChangeLog   28 Sep 2007 15:51:29 -0000      1.4467
@@ -1,3 +1,8 @@
+2007-09-28 Sandro Santilli <address@hidden>
+
+       * testsuite/actionscript.all/toString_valueOf.as: more tests,
+         check->check_equals.
+
 2007-09-28 Benjamin Wolsey <address@hidden>
 
        * libbase/rc.{h,cpp}: move list parsing into a function; enable

Index: testsuite/actionscript.all/toString_valueOf.as
===================================================================
RCS file: /sources/gnash/gnash/testsuite/actionscript.all/toString_valueOf.as,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -b -r1.22 -r1.23
--- testsuite/actionscript.all/toString_valueOf.as      28 Sep 2007 10:42:41 
-0000      1.22
+++ testsuite/actionscript.all/toString_valueOf.as      28 Sep 2007 15:51:29 
-0000      1.23
@@ -292,8 +292,10 @@
   check_equals(typeof(text1.__proto__.toString), "function");
 #else
   xcheck_equals(typeof(text1.toString), "undefined");
+  xcheck_equals(typeof(text1.valueOf), "undefined");
   check_equals(typeof(text1.__proto__), 'object');
   xcheck_equals(typeof(text1.__proto__.toString), "undefined"); 
+  xcheck_equals(typeof(text1.__proto__.valueOf), "undefined"); 
 #endif
 
 x = text1.toString();
@@ -311,7 +313,7 @@
   xcheck_equals(y.toString(), undefined); 
   xcheck_equals(typeof(y.valueOf()),  "undefined"); 
 #endif 
-check(y == text1);
+check_equals(y, text1);
 
 //
 //Testing toString and valueOf of Buttons




reply via email to

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