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/ops.as


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog testsuite/actionscript.all/ops.as
Date: Sun, 19 Aug 2007 23:34:55 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  07/08/19 23:34:55

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

Log message:
                * testsuite/actionscript.all/ops.as: test that NaN and 
undefined are
                  not less one other.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.4041&r2=1.4042
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/actionscript.all/ops.as?cvsroot=gnash&r1=1.16&r2=1.17

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.4041
retrieving revision 1.4042
diff -u -b -r1.4041 -r1.4042
--- ChangeLog   19 Aug 2007 22:50:15 -0000      1.4041
+++ ChangeLog   19 Aug 2007 23:34:54 -0000      1.4042
@@ -1,5 +1,7 @@
 2007-08-19 Sandro Santilli <address@hidden>
 
+       * testsuite/actionscript.all/ops.as: test that NaN and undefined are
+         not less one other.
        * server/vm/ASHandlers.cpp (ActionGetVariables): simplify debugging
          output.
 

Index: testsuite/actionscript.all/ops.as
===================================================================
RCS file: /sources/gnash/gnash/testsuite/actionscript.all/ops.as,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -b -r1.16 -r1.17
--- testsuite/actionscript.all/ops.as   13 Aug 2007 08:00:44 -0000      1.16
+++ testsuite/actionscript.all/ops.as   19 Aug 2007 23:34:55 -0000      1.17
@@ -20,7 +20,7 @@
  *  Test binary predicates (equal, less_then, greater_then, logical and 
bitwise ops)
  */
 
-rcsid="$Id: ops.as,v 1.16 2007/08/13 08:00:44 zoulunkai Exp $";
+rcsid="$Id: ops.as,v 1.17 2007/08/19 23:34:55 strk Exp $";
 
 #include "check.as"
 
@@ -120,6 +120,12 @@
 y=1.0;
 xcheck(x<y);
 
+check(! (NaN < NaN) );
+check(! (undefined < undefined) );
+
+check(! (NaN < undefined) );
+check(! (undefined < NaN) );
+
 //------------------------------------------------
 // Logical AND operator (ACTION_LOGICALAND : 0x10)
 //------------------------------------------------




reply via email to

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