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: Martin Guy
Subject: [Gnash-commit] gnash ChangeLog testsuite/actionscript.all/Glob...
Date: Thu, 01 Feb 2007 17:47:17 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Martin Guy <martinwguy> 07/02/01 17:47:17

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

Log message:
        fix bug in parseInt octal test (now succeeds)

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.2218&r2=1.2219
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/actionscript.all/Global.as?cvsroot=gnash&r1=1.15&r2=1.16

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.2218
retrieving revision 1.2219
diff -u -b -r1.2218 -r1.2219
--- ChangeLog   1 Feb 2007 16:32:29 -0000       1.2218
+++ ChangeLog   1 Feb 2007 17:47:17 -0000       1.2219
@@ -1,3 +1,8 @@
+2007-02-01 Martin Guy <address@hidden>
+
+       * testsuite/actionscript.all/Global.as: fix bug in parseInt octal test
+         (now succeeds)
+
 2007-02-01 Sandro Santilli <address@hidden>
 
        * testsuite/misc-ming.all/: registerClassTest.c,

Index: testsuite/actionscript.all/Global.as
===================================================================
RCS file: /sources/gnash/gnash/testsuite/actionscript.all/Global.as,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -b -r1.15 -r1.16
--- testsuite/actionscript.all/Global.as        25 Nov 2006 14:56:43 -0000      
1.15
+++ testsuite/actionscript.all/Global.as        1 Feb 2007 17:47:17 -0000       
1.16
@@ -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.15 2006/11/25 14:56:43 strk Exp $";
+rcsid="$Id: Global.as,v 1.16 2007/02/01 17:47:17 martinwguy Exp $";
 
 #include "check.as"
 
@@ -35,7 +35,7 @@
 // Test parseint with hex
 check ( parseInt('0x111') == 273 );
 // Test parseint with octal
-xcheck_equals (parseInt('   0352'), 352 );
+check (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




reply via email to

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