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


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog testsuite/actionscript.all/Glob...
Date: Thu, 08 Feb 2007 00:53:31 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  07/02/08 00:53:31

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

Log message:
                * testsuite/actionscript.all/Global.as: expect failures with
                  'unescape'... anyone confirming the results with other players
                  is welcome.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.2270&r2=1.2271
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/actionscript.all/Global.as?cvsroot=gnash&r1=1.19&r2=1.20

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.2270
retrieving revision 1.2271
diff -u -b -r1.2270 -r1.2271
--- ChangeLog   8 Feb 2007 00:38:50 -0000       1.2270
+++ ChangeLog   8 Feb 2007 00:53:31 -0000       1.2271
@@ -1,6 +1,8 @@
 2007-02-07 Sandro Santilli <address@hidden>
 
-
+       * testsuite/actionscript.all/Global.as: expect failures with
+         'unescape'... anyone confirming the results with other players
+         is welcome.
        * testsuite/MovieTester.{cpp,h}: add pressKey() and releaseKey()
          methods.
        * testsuite/misc-ming.all/: KeyTest-Runner.cpp, KeyTest.as,

Index: testsuite/actionscript.all/Global.as
===================================================================
RCS file: /sources/gnash/gnash/testsuite/actionscript.all/Global.as,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -b -r1.19 -r1.20
--- testsuite/actionscript.all/Global.as        6 Feb 2007 11:00:36 -0000       
1.19
+++ testsuite/actionscript.all/Global.as        8 Feb 2007 00:53:31 -0000       
1.20
@@ -20,7 +20,7 @@
 // compile this test case with Ming makeswf, and then
 // execute it like this gnash -1 -r 0 -v out.swf
 
-rcsid="$Id: Global.as,v 1.19 2007/02/06 11:00:36 strk Exp $";
+rcsid="$Id: Global.as,v 1.20 2007/02/08 00:53:31 strk Exp $";
 
 #include "check.as"
 
@@ -39,9 +39,9 @@
 // Test parseint with hex
 check ( parseInt('0x111') == 273 );
 // Test parseint with octal
-check_equals (parseInt('   0352'), 352 );
+xcheck_equals (parseInt('   0352'), 352 );
 // a '0' prefix turns the number into an octal one ?
-check (parseInt('   0352') != 0352 );
+xcheck (parseInt('   0352') != 0352 );
 // Test parseint with 36 base
 check ( parseInt('2GA',36) == (10+16*36+2*36*36) );
 // Test parseint with base 17 - the 'H' is not part of base 17, only the first 
two digits are valid
@@ -66,15 +66,15 @@
 check_equals ( unescape('%3A%2F%3F%3D%26'), ':/?=&' );
 check_equals ( unescape('%3a%2f%3f%3d%26'), ':/?=&' );
 #if OUTPUT_VERSION == 5
-check_equals ( unescape('%3a%2f%3f%3d%26%'), ':/?=&387' ); // SWF5
+xcheck_equals ( unescape('%3a%2f%3f%3d%26%'), ':/?=&387' ); // SWF5
 #else
 // TODO: check output in SWF6 and higher
 // (possibly UTF8, player LNX 7,0,25,0 reveals a memory corruption)
-check_equals ( unescape('%3a%2f%3f%3d%26%'), ':/?=&' ); // SWF6
+xcheck_equals ( unescape('%3a%2f%3f%3d%26%'), ':/?=&' ); // SWF6
 #endif
 
 #if OUTPUT_VERSION == 5
-check_equals ( unescape('%3a%2f%3f%3d%26%2'), ':/?=&87' ); // SWF5
+xcheck_equals ( unescape('%3a%2f%3f%3d%26%2'), ':/?=&87' ); // SWF5
 #else
 // TODO: check output in SWF6 and higher
 // (possibly UTF8, player LNX 7,0,25,0 reveals a memory corruption)
@@ -84,7 +84,7 @@
 check_equals (escape(' "#$%&+,/:;<='), 
'%20%22%23%24%25%26%2B%2C%2F%3A%3B%3C%3D');
 check_equals (escape('>address@hidden|}~'), 
'%3E%3F%40%5B%5C%5D%5E%60%7B%7C%7D%7E');
 //check_equals (escape('!()*-._0123456789'), '!()*-._0123456789');
-check_equals (escape('!()*-._0123456789'), '%21%28%29%2A%2D%2E%5F0123456789'); 
// SWF5
+xcheck_equals (escape('!()*-._0123456789'), 
'%21%28%29%2A%2D%2E%5F0123456789'); // SWF5
 check_equals (escape('ABCDEFGHIJKLMNOPQRSTUVWXYZ'), 
'ABCDEFGHIJKLMNOPQRSTUVWXYZ');
 check_equals (escape('abcdefghijklmnopqrstuvwxyz'), 
'abcdefghijklmnopqrstuvwxyz');
 




reply via email to

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