gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog testsuite/misc-ming.all/registe...


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog testsuite/misc-ming.all/registe...
Date: Sat, 22 Sep 2007 13:08:41 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  07/09/22 13:08:41

Modified files:
        .              : ChangeLog 
        testsuite/misc-ming.all: registerClassTest2.c 
        testsuite/misc-swfc.all: movieclip_destruction_test1.sc 

Log message:
                * testsuite/misc-ming.all/registerClassTest2.c,
                  testsuite/misc-swfc.all/movieclip_destruction_test1.sc:
                  Expect the failures and the success introduced by reverting
                  the change which broke youtube.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.4376&r2=1.4377
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/misc-ming.all/registerClassTest2.c?cvsroot=gnash&r1=1.4&r2=1.5
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/misc-swfc.all/movieclip_destruction_test1.sc?cvsroot=gnash&r1=1.20&r2=1.21

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.4376
retrieving revision 1.4377
diff -u -b -r1.4376 -r1.4377
--- ChangeLog   22 Sep 2007 12:29:06 -0000      1.4376
+++ ChangeLog   22 Sep 2007 13:08:40 -0000      1.4377
@@ -1,3 +1,10 @@
+2007-09-22 Sandro Santilli <address@hidden>
+
+       * testsuite/misc-ming.all/registerClassTest2.c,
+         testsuite/misc-swfc.all/movieclip_destruction_test1.sc:
+         Expect the failures and the success introduced by reverting
+         the change which broke youtube.
+
 2007-09-22 Chad Musick <address@hidden>
 
        * server/parser/abc_block.cpp: Change data() to &...front() since

Index: testsuite/misc-ming.all/registerClassTest2.c
===================================================================
RCS file: /sources/gnash/gnash/testsuite/misc-ming.all/registerClassTest2.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- testsuite/misc-ming.all/registerClassTest2.c        21 Sep 2007 08:52:21 
-0000      1.4
+++ testsuite/misc-ming.all/registerClassTest2.c        22 Sep 2007 13:08:41 
-0000      1.5
@@ -141,7 +141,7 @@
     
   SWFDisplayItem_addAction(it3,
     newSWFAction(" _root.note('mc3.onClipConstruct'); "
-                 " _root.xcheck_equals(typeof(_root.clip3), 'movieclip'); "
+                 " _root.check_equals(typeof(_root.clip3), 'movieclip'); "
                  // this one is passed by luck at the moment, both are 
undefined for Gnash
                  " _root.check_equals(_root.clip3.__proto__, 
_root.theClass3.prototype);"
                 ),

Index: testsuite/misc-swfc.all/movieclip_destruction_test1.sc
===================================================================
RCS file: 
/sources/gnash/gnash/testsuite/misc-swfc.all/movieclip_destruction_test1.sc,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -b -r1.20 -r1.21
--- testsuite/misc-swfc.all/movieclip_destruction_test1.sc      22 Sep 2007 
10:04:38 -0000      1.20
+++ testsuite/misc-swfc.all/movieclip_destruction_test1.sc      22 Sep 2007 
13:08:41 -0000      1.21
@@ -135,7 +135,7 @@
   
   .initaction mc3: // Add initactions for mc3(mc3 is not placed)
     _root.initActionExecuted += ", mc3";
-    _root.check_equals(typeof(mc1), 'undefined');
+    _root.xcheck_equals(typeof(mc1), 'undefined'); // Gnash fails as it 
execute these immediately , so before mc1 is removed below
     _root.check_equals(typeof(_root.getInstanceAtDepth(-16386)), 'undefined');
   .end
 
@@ -241,10 +241,10 @@
   .initaction mc6: // Add initactions for mc6
     // Gnash fails by not respecting actions order for initactions
     _root.initActionExecuted += ", mc6";
-    _root.check_equals(typeof(mc6), 'movieclip');
-    _root.check_equals(typeof(mc6.mc61), 'movieclip');
-    _root.check_equals(typeof(mc7), 'movieclip');
-    _root.check_equals(typeof(mc7.mc71), 'movieclip');
+    _root.xcheck_equals(typeof(mc6), 'movieclip'); // Gnash fails because 
executes init actions before DLIST tags
+    _root.xcheck_equals(typeof(mc6.mc61), 'movieclip'); // Gnash fails because 
executes init actions before DLIST tags
+    _root.xcheck_equals(typeof(mc7), 'movieclip'); // Gnash fails because 
executes init actions before DLIST tags
+    _root.xcheck_equals(typeof(mc7.mc71), 'movieclip'); // Gnash fails because 
executes init actions before DLIST tags
     _root.check_equals(this, _root); // target is the root !
   .end
   




reply via email to

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