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


From: Benjamin Wolsey
Subject: [Gnash-commit] gnash ChangeLog testsuite/misc-ming.all/frame_l...
Date: Fri, 23 May 2008 13:18:39 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Benjamin Wolsey <bwy>   08/05/23 13:18:39

Modified files:
        .              : ChangeLog 
        testsuite/misc-ming.all: frame_label_test.c 

Log message:
                * testsuite/misc-ming.all/frame_label_test.c: test for
                  case sensitivity.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.6689&r2=1.6690
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/misc-ming.all/frame_label_test.c?cvsroot=gnash&r1=1.4&r2=1.5

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.6689
retrieving revision 1.6690
diff -u -b -r1.6689 -r1.6690
--- ChangeLog   23 May 2008 12:01:09 -0000      1.6689
+++ ChangeLog   23 May 2008 13:18:37 -0000      1.6690
@@ -1,5 +1,10 @@
 2008-05-23 Benjamin Wolsey <address@hidden>
 
+       * testsuite/misc-ming.all/frame_label_test.c: test for
+         case sensitivity.
+
+2008-05-23 Benjamin Wolsey <address@hidden>
+
        * server/vm/ASHandlers.cpp: bitwise left shift of more than the size of
          the left operand is bad (undefined behaviour).
 

Index: testsuite/misc-ming.all/frame_label_test.c
===================================================================
RCS file: /sources/gnash/gnash/testsuite/misc-ming.all/frame_label_test.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- testsuite/misc-ming.all/frame_label_test.c  23 Oct 2007 07:23:04 -0000      
1.4
+++ testsuite/misc-ming.all/frame_label_test.c  23 May 2008 13:18:38 -0000      
1.5
@@ -105,6 +105,21 @@
   add_clip_actions(mc1, "_root.x8 = 'mc1_frame8'; stop(); ");
   SWFMovieClip_labelFrame(mc1, "frame8");
   SWFMovieClip_nextFrame(mc1); 
+  add_clip_actions(mc1, "_root.x9 = 'small_first'; stop(); ");
+  SWFMovieClip_labelFrame(mc1, "small_first");
+  SWFMovieClip_nextFrame(mc1); 
+  add_clip_actions(mc1, "_root.x9 = 'Small_first'; stop(); ");
+  SWFMovieClip_labelFrame(mc1, "Small_first");
+  SWFMovieClip_nextFrame(mc1);   
+  add_clip_actions(mc1, "_root.x10 = 'mc1_frame10'; stop(); ");
+  SWFMovieClip_labelFrame(mc1, "frame10");
+  SWFMovieClip_nextFrame(mc1);  
+  add_clip_actions(mc1, "_root.x11 = 'Big_first'; stop(); ");
+  SWFMovieClip_labelFrame(mc1, "Big_first");
+  SWFMovieClip_nextFrame(mc1); 
+  add_clip_actions(mc1, "_root.x11 = 'big_first'; stop(); ");
+  SWFMovieClip_labelFrame(mc1, "big_first");
+  SWFMovieClip_nextFrame(mc1); 
   
     
   /* place _root.mc1 */
@@ -123,7 +138,10 @@
                   " gotoAndPlay(lable); "           //GotoExpression
                   " "CALLFRAME"('/mc1/mc11/:frame6'); "
                   " "CALLFRAME"('mc1:7'); "
-                  " "CALLFRAME"('mc1/:frame8'); ");      
+                  " "CALLFRAME"('mc1/:frame8'); "
+                  " "CALLFRAME"('mc1/:Small_first'); "
+                  " "CALLFRAME"('mc1/:Frame10'); "
+                  " "CALLFRAME"('mc1/:big_first'); ");      
                   
   SWFMovie_nextFrame(mo); /* 3rd frame of _root */
    
@@ -135,6 +153,9 @@
   check_equals(mo, "_root.x3", "'mc11_frame6'");
   check_equals(mo, "_root.x7", "'mc1_frame7'");
   check_equals(mo, "_root.x8", "'mc1_frame8'");
+  xcheck_equals(mo, "_root.x9", "'small_first'");
+  xcheck_equals(mo, "_root.x10", "'mc1_frame10'");
+  xcheck_equals(mo, "_root.x11", "'Big_first'");
   /* seems that GotoLabel does not support target_path */
   check_equals(mo, "_root.x4", "0");
   check_equals(mo, "_root.x5", "0");




reply via email to

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