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


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog testsuite/actionscript.all/Numb...
Date: Thu, 19 Apr 2007 16:57:15 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  07/04/19 16:57:15

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

Log message:
                * testsuite/actionscript.all/Number.as:
                  Re-enabled a big block of tests accidentally left
                  cut out. Expect less failures also ! :)

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.2935&r2=1.2936
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/actionscript.all/Number.as?cvsroot=gnash&r1=1.17&r2=1.18

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.2935
retrieving revision 1.2936
diff -u -b -r1.2935 -r1.2936
--- ChangeLog   19 Apr 2007 15:59:56 -0000      1.2935
+++ ChangeLog   19 Apr 2007 16:57:15 -0000      1.2936
@@ -1,3 +1,9 @@
+2007-04-19 Sandro Santilli <address@hidden>
+
+       * testsuite/actionscript.all/Number.as:
+         Re-enabled a big block of tests accidentally left
+         cut out. Expect less failures also ! :)
+
 2007-04-19 Udo Giacomozzi <address@hidden>
 
        * testsuite/misc-ming.all/matrix_test.c: use Math.round() to

Index: testsuite/actionscript.all/Number.as
===================================================================
RCS file: /sources/gnash/gnash/testsuite/actionscript.all/Number.as,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -b -r1.17 -r1.18
--- testsuite/actionscript.all/Number.as        19 Apr 2007 10:27:10 -0000      
1.17
+++ testsuite/actionscript.all/Number.as        19 Apr 2007 16:57:15 -0000      
1.18
@@ -26,12 +26,10 @@
 // TODO: test with SWF target != 6 (the only one tested so far)
 //     
 
-rcsid="$Id: Number.as,v 1.17 2007/04/19 10:27:10 strk Exp $";
+rcsid="$Id: Number.as,v 1.18 2007/04/19 16:57:15 strk Exp $";
 
 #include "check.as"
 
-#if 0 // REMOVEME STRK
-
 var n1=new Number(268);
 
 // strict-equality operator was introduced in SWF6
@@ -170,8 +168,8 @@
 this.valueOf = function() { return 5; };
 check(isNaN(this));
 o = new Object;
-xcheck(isNaN(o));
-xcheck(isNaN(0+o));
+check(isNaN(o));
+check(isNaN(0+o));
 o.valueOf = function() { return 3; };
 check_equals(0+o, 3);
 check_equals(0+"string", "0string");
@@ -179,7 +177,7 @@
 #if OUTPUT_VERSION < 6
 check(!isNaN(2+Number));
 #else
-xcheck(isNaN(2+Number));
+check(isNaN(2+Number));
 #endif
 
 #if OUTPUT_VERSION >= 7
@@ -263,7 +261,7 @@
 check_equals(typeof(Number.prototype.valueOf), 'function'); 
 check_equals(typeof(Number.prototype.toString), 'function'); 
 #if OUTPUT_VERSION > 5
-xcheck(isNaN(Number.valueOf()));
+check(isNaN(Number.valueOf()));
 check_equals(typeof(Number.toString), 'function');
 check_equals(typeof(Number.valueOf), 'function');
 check(!Number.hasOwnProperty('valueOf'));
@@ -302,8 +300,6 @@
 check(!anum.hasOwnProperty('toString'));
 #endif
 
-#endif // REMOVEME STRK
-
 //-----------------------------------------------------------
 // Check conversion to number
 //-----------------------------------------------------------




reply via email to

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