CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Benjamin Wolsey <bwy>   07/11/23 21:19:41

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

Log message:
        Expect currentFps to fail

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.4944&r2=1.4945
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/misc-ming.all/NetStream-SquareTest.c?cvsroot=gnash&r1=1.16&r2=1.17

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.4944
retrieving revision 1.4945
diff -u -b -r1.4944 -r1.4945
--- ChangeLog   23 Nov 2007 17:47:40 -0000      1.4944
+++ ChangeLog   23 Nov 2007 21:19:40 -0000      1.4945
@@ -1,5 +1,10 @@
 2007-11-23 Benjamin Wolsey <[EMAIL PROTECTED]>
 
+       * testsuite/misc-ming.all/NetStream-SquareTest: fix expected results for
+         currentFps.
+
+2007-11-23 Benjamin Wolsey <[EMAIL PROTECTED]>
+
        * testsuite/misc-ming.all/NetStream-SquareTest: duplicate some tests 
from
          NetStream.as (different results expected).
 

Index: testsuite/misc-ming.all/NetStream-SquareTest.c
===================================================================
RCS file: /sources/gnash/gnash/testsuite/misc-ming.all/NetStream-SquareTest.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -b -r1.16 -r1.17
--- testsuite/misc-ming.all/NetStream-SquareTest.c      23 Nov 2007 17:47:40 
-0000      1.16
+++ testsuite/misc-ming.all/NetStream-SquareTest.c      23 Nov 2007 21:19:40 
-0000      1.17
@@ -139,11 +139,11 @@
   add_actions(mo, "video.attachVideo(stream);"); 
   
   // currentFps (read-only)
-  check_equals (mo, "typeof(stream.currentFps)", "'number'" );
+  xcheck_equals (mo, "typeof(stream.currentFps)", "'number'" );
   add_actions(mo, "stream.currentFps = 'string';");
-  check_equals (mo, "typeof(stream.currentFps)", "'number'" );
+  xcheck_equals (mo, "typeof(stream.currentFps)", "'number'" );
   add_actions(mo, "stream.currentFps = false;");
-  check_equals (mo, "typeof(stream.currentFps)", "'number'" );
+  xcheck_equals (mo, "typeof(stream.currentFps)", "'number'" );
 
   // bufferLength (read-only)
   check_equals (mo, "typeof(stream.bufferLength)", "'number'" );
@@ -184,14 +184,14 @@
   add_actions(mo, "stream.bytesLoaded = 'string';");
   check_equals (mo, "typeof(stream.bytesLoaded)", "'number'" ); 
 
-  check_equals (mo, "stream.currentFps", "0" );
+  xcheck_equals (mo, "stream.currentFps", "0" );
 
   /* Play video */
   b = newSWFAction(buffer_b);
   if(b == NULL) return -1;
   SWFMovie_add(mo, (SWFBlock)b);
  
-  check_equals (mo, "stream.currentFps", "0" );
+  xcheck_equals (mo, "stream.currentFps", "0" );
  
   /* Publisher Methods */
 


_______________________________________________
Gnash-commit mailing list
Gnash-commit@gnu.org
http://lists.gnu.org/mailman/listinfo/gnash-commit

Reply via email to