gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] gnash/testsuite/actionscript.all Object.as


From: Benjamin Wolsey
Subject: [Gnash-commit] gnash/testsuite/actionscript.all Object.as
Date: Mon, 28 Apr 2008 13:45:09 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Benjamin Wolsey <bwy>   08/04/28 13:45:09

Modified files:
        testsuite/actionscript.all: Object.as 

Log message:
        Gnash fails...

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/actionscript.all/Object.as?cvsroot=gnash&r1=1.64&r2=1.65

Patches:
Index: Object.as
===================================================================
RCS file: /sources/gnash/gnash/testsuite/actionscript.all/Object.as,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -b -r1.64 -r1.65
--- Object.as   28 Apr 2008 13:43:00 -0000      1.64
+++ Object.as   28 Apr 2008 13:45:09 -0000      1.65
@@ -21,7 +21,7 @@
 // execute it like this gnash -1 -r 0 -v out.swf
 
 
-rcsid="$Id: Object.as,v 1.64 2008/04/28 13:43:00 bwy Exp $";
+rcsid="$Id: Object.as,v 1.65 2008/04/28 13:45:09 bwy Exp $";
 #include "check.as"
 
 // Test things in Class Object (swf5~swf8)
@@ -828,17 +828,17 @@
 check_equals ("string + " + nothing, "string + toString");
 nothing.__proto__ = undefined;
 #if OUTPUT_VERSION < 7
-check_equals ("string + " + nothing, "string + ");
+xcheck_equals ("string + " + nothing, "string + ");
 #else
-check_equals ("string + " + nothing, "string + undefined");
+xcheck_equals ("string + " + nothing, "string + undefined");
 #endif
 
 nothing2 = new Object();
 nothing2.__proto__ = undefined;
 #if OUTPUT_VERSION < 7
-check_equals ("string + " + nothing2, "string + ");
+xcheck_equals ("string + " + nothing2, "string + ");
 #else
-check_equals ("string + " + nothing, "string + undefined");
+xcheck_equals ("string + " + nothing, "string + undefined");
 #endif
 
 nothing2.valueOf = function() { return "valueOf"; };




reply via email to

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