gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog testsuite/misc-swfc.all/moviecl...


From: Zou Lunkai
Subject: [Gnash-commit] gnash ChangeLog testsuite/misc-swfc.all/moviecl...
Date: Wed, 05 Sep 2007 02:32:58 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Zou Lunkai <zoulunkai>  07/09/05 02:32:58

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

Log message:
        * testsuite/misc-swfc.all/movieclip_destruction_test1.sc: more tests 
about 
          initactions, gnash fails by not respecting the actions order.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.4226&r2=1.4227
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/misc-swfc.all/movieclip_destruction_test1.sc?cvsroot=gnash&r1=1.9&r2=1.10

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.4226
retrieving revision 1.4227
diff -u -b -r1.4226 -r1.4227
--- ChangeLog   5 Sep 2007 02:15:40 -0000       1.4226
+++ ChangeLog   5 Sep 2007 02:32:57 -0000       1.4227
@@ -1,3 +1,8 @@
+2007-09-05 Zou Lunkai <address@hidden>
+
+       * testsuite/misc-swfc.all/movieclip_destruction_test1.sc: more tests 
about 
+         initactions, gnash fails by not respecting the actions order.
+       
 2007-09-05 Markus Gothe <address@hidden>
 
        * server/asobj/MovieClipLoader.cpp: iterator -> const_iterator.

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.9
retrieving revision 1.10
diff -u -b -r1.9 -r1.10
--- testsuite/misc-swfc.all/movieclip_destruction_test1.sc      4 Sep 2007 
10:19:01 -0000       1.9
+++ testsuite/misc-swfc.all/movieclip_destruction_test1.sc      5 Sep 2007 
02:32:58 -0000       1.10
@@ -101,7 +101,7 @@
   .end
   
   .initaction mc2: // Add initactions for mc2(mc2 is not placed)
-    // mc1 is still alive here, _root.gotoAndStop(6) hasn't been executed yet.
+    // mc1 is still alive here, _root.gotoAndPlay(6) hasn't been executed yet.
     // Note mc1 has 2 frames.
     check_equals(typeof(mc1), 'movieclip');
     check_equals(mc1.getDepth(), -16383);
@@ -189,10 +189,34 @@
     check_equals(_root.testvar2, 400);
     check_equals(typeof(_root.mc5), 'movieclip');  
     check_equals(mc5.getDepth(), -32969); 
+  .end
+
+//
+// Seperate tests for DoInitAction.
+//
+.frame 12
+  .sprite mc6  // Define a movieclip
+    .frame 1  b3
+  .end
+  
+  .put mc6    // Place the movieclip
     
+  .initaction mc6: // Add initactions for mc6
+    // Gnash fails by not respecting actions order for initactions
+    _root.xcheck_equals(typeof(mc6), 'movieclip');
+    _root.xcheck_equals(typeof(mc7), 'movieclip');
+  .end
+  
+  .sprite mc7  // Define a movieclip
+    .frame 1  b3
+  .end
+  
+  .put mc7    // Place the movieclip
+  
+  .action:
     stop();
     totals();
   .end
 
-.end
+.end  // file end
 




reply via email to

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