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: Sat, 27 Oct 2007 13:02:27 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  07/10/27 13:02:27

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

Log message:
                * testsuite/actionscript.all/Global.as: use 'delete a.b'
                  instead of 'delete(a.b)' -- the latter wasn't supported
                  by erlier Ming versions.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.4728&r2=1.4729
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/actionscript.all/Global.as?cvsroot=gnash&r1=1.33&r2=1.34

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.4728
retrieving revision 1.4729
diff -u -b -r1.4728 -r1.4729
--- ChangeLog   27 Oct 2007 10:53:43 -0000      1.4728
+++ ChangeLog   27 Oct 2007 13:02:26 -0000      1.4729
@@ -1,5 +1,11 @@
 2007-10-27 Sandro Santilli <address@hidden>
 
+       * testsuite/actionscript.all/Global.as: use 'delete a.b'
+         instead of 'delete(a.b)' -- the latter wasn't supported
+         by erlier Ming versions.
+
+2007-10-27 Sandro Santilli <address@hidden>
+
        * testsuite/actionscript.all/Global.as: more tests about invisible
          flags over inherited getter-setters (most failures are for SWF6
          only)

Index: testsuite/actionscript.all/Global.as
===================================================================
RCS file: /sources/gnash/gnash/testsuite/actionscript.all/Global.as,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -b -r1.33 -r1.34
--- testsuite/actionscript.all/Global.as        27 Oct 2007 10:53:44 -0000      
1.33
+++ testsuite/actionscript.all/Global.as        27 Oct 2007 13:02:27 -0000      
1.34
@@ -21,7 +21,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.33 2007/10/27 10:53:44 strk Exp $";
+rcsid="$Id: Global.as,v 1.34 2007/10/27 13:02:27 strk Exp $";
 
 #include "check.as"
 
@@ -169,7 +169,7 @@
        xcheck_equals(a.m, 2); // ignore flag was cleared
        ASsetPropFlags(a, "m", 256);
        check_equals(a.m, 9); // a own property was set instead
-       check(delete(a.m)); // delete a.m
+       check(delete a.m); // delete a.m
        ASsetPropFlags(b, "m", 256); // make b.m invisible
        check_equals(a.m, 99); // b.m invisible, a.m non-existent
        a.m=3; // will call b.m setter, even if invisible 
@@ -189,7 +189,7 @@
        check_equals(a.m, 9); // ignore flag wasn't cleared
        ASsetPropFlags(a, "m", 0, 1024);
        check_equals(a.m, 2); // a own property was set instead
-       check(delete(a.m)); // delete a.m
+       check(delete a.m); // delete a.m
        ASsetPropFlags(b, "m", 1024); // make b.m invisible
        check_equals(a.m, 99); // b.m invisible, a.m non-existent
        a.m=3; // will call b.m setter, even if invisible 
@@ -209,7 +209,7 @@
        xcheck_equals(a.m, 2); // ignore flag was cleared
        ASsetPropFlags(a, "m", 0, 4096);
        check_equals(a.m, 2); // a own property was set instead
-       check(delete(a.m)); // delete a.m
+       check(delete a.m); // delete a.m
        ASsetPropFlags(b, "m", 4096); // make b.m invisible
        check_equals(a.m, 99); // b.m invisible, a.m non-existent
        a.m=3; // will call c.m setter, skipping invisible b.m one
@@ -234,7 +234,7 @@
        xcheck_equals(a.m, 2); // ignore flag was cleared
        ASSetPropFlags(a, "m", 0, 4096);
        check_equals(a.m, 2); // a own property was set instead
-       check(delete(a.m)); // delete a.m
+       check(delete a.m); // delete a.m
        check_equals(b.m, 8); // ???
        ASsetPropFlags(b, "m", 4096); // make b.m invisible (no-op in SWF7 ?)
        check_equals(b.m, 8); // b.m getter, altought invisible, is still 
invoked as a getter




reply via email to

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