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/Date.as


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog testsuite/actionscript.all/Date.as
Date: Fri, 27 Oct 2006 12:31:11 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  06/10/27 12:31:11

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

Log message:
                * testsuite/actionscript.all/Date.as: fixed testcase
                  (get => getDate, set => setDate, getUTC => getUTCDate,
                   setUTC => setUTCDate)

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.1414&r2=1.1415
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/actionscript.all/Date.as?cvsroot=gnash&r1=1.5&r2=1.6

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.1414
retrieving revision 1.1415
diff -u -b -r1.1414 -r1.1415
--- ChangeLog   27 Oct 2006 11:01:35 -0000      1.1414
+++ ChangeLog   27 Oct 2006 12:31:11 -0000      1.1415
@@ -1,5 +1,11 @@
 2006-10-27 Sandro Santilli <address@hidden>
 
+       * testsuite/actionscript.all/Date.as: fixed testcase
+         (get => getDate, set => setDate, getUTC => getUTCDate,
+          setUTC => setUTCDate)
+
+2006-10-27 Sandro Santilli <address@hidden>
+
        * server/Property.h: improved documentation, added isGetterSetter,
          modified other methods to take as_object by *reference* (not
          pointer, as we dont' accept NULLs).

Index: testsuite/actionscript.all/Date.as
===================================================================
RCS file: /sources/gnash/gnash/testsuite/actionscript.all/Date.as,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -b -r1.5 -r1.6
--- testsuite/actionscript.all/Date.as  15 Oct 2006 02:30:55 -0000      1.5
+++ testsuite/actionscript.all/Date.as  27 Oct 2006 12:31:11 -0000      1.6
@@ -40,7 +40,7 @@
 // compile this test case with Ming makeswf, and then
 // execute it like this gnash -1 -r 0 -v out.swf
 
-rcsid="$Id: Date.as,v 1.5 2006/10/15 02:30:55 rsavoye Exp $";
+rcsid="$Id: Date.as,v 1.6 2006/10/27 12:31:11 strk Exp $";
 
 #include "check.as"
 
@@ -49,8 +49,8 @@
 // test the Date constuctor
 check (date);
 
-// test the Date::get method
-xcheck (date.get != undefined);
+// test the Date::getDate method (there's no such method)
+check (date.getdate != undefined);
 
 // test the Date::getday method
 check (date.getday != undefined);
@@ -79,8 +79,8 @@
 // test the Date::gettimezoneoffset method
 check (date.gettimezoneoffset != undefined);
 
-// test the Date::getutc method
-xcheck (date.getutc != undefined);
+// test the Date::getUTCDate method
+check (date.getutcdate != undefined);
 
 // test the Date::getutcday method
 check (date.getutcday != undefined);
@@ -106,8 +106,8 @@
 // test the Date::getyear method
 check (date.getyear != undefined);
 
-// test the Date::set method
-xcheck (date.set != undefined);
+// test the Date::setDate method
+check (date.setdate != undefined);
 
 // test the Date::setfullyear method
 check (date.setfullyear != undefined);
@@ -130,8 +130,8 @@
 // test the Date::settime method
 check (date.settime != undefined);
 
-// test the Date::setutc method
-xcheck (date.setutc != undefined);
+// test the Date::setUTCDate method
+check (date.setutcdate != undefined);
 
 // test the Date::setutcfullyear method
 check (date.setutcfullyear != undefined);




reply via email to

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