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


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog testsuite/actionscript.all/deja...
Date: Mon, 01 Oct 2007 07:22:13 +0000

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

Modified files:
        .              : ChangeLog 
        testsuite/actionscript.all: dejagnu_so_init.as with.as 

Log message:
                * testsuite/actionscript.all/dejagnu_so_init.as: set and invoke
                  utility functions from/to _root. Fixes some scope chain 
problems
                  we have in Gnash, better tested in a more focused testcase.
                * testsuite/actionscript.all/with.as: total runs check succeed
                  with the change above.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.4484&r2=1.4485
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/actionscript.all/dejagnu_so_init.as?cvsroot=gnash&r1=1.13&r2=1.14
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/actionscript.all/with.as?cvsroot=gnash&r1=1.20&r2=1.21

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.4484
retrieving revision 1.4485
diff -u -b -r1.4484 -r1.4485
--- ChangeLog   1 Oct 2007 06:33:53 -0000       1.4484
+++ ChangeLog   1 Oct 2007 07:22:11 -0000       1.4485
@@ -1,5 +1,13 @@
 2007-09-30 Sandro Santilli <address@hidden>
 
+       * testsuite/actionscript.all/dejagnu_so_init.as: set and invoke
+         utility functions from/to _root. Fixes some scope chain problems
+         we have in Gnash, better tested in a more focused testcase.
+       * testsuite/actionscript.all/with.as: total runs check succeed
+         with the change above.
+
+2007-09-30 Sandro Santilli <address@hidden>
+
        * testsuite/actionscript.all/check.as: rename totals_check,
          xtotals_check to check_totals() and xcheck_totals (easier
          to grep for 'xcheck').

Index: testsuite/actionscript.all/dejagnu_so_init.as
===================================================================
RCS file: /sources/gnash/gnash/testsuite/actionscript.all/dejagnu_so_init.as,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -b -r1.13 -r1.14
--- testsuite/actionscript.all/dejagnu_so_init.as       11 Apr 2007 14:20:21 
-0000      1.13
+++ testsuite/actionscript.all/dejagnu_so_init.as       1 Oct 2007 07:22:12 
-0000       1.14
@@ -49,17 +49,17 @@
                        xtrace(msg);
                        trace(msg);
                };
-               pass_check = function (msg) {
-                       pass(msg);
+               _root.pass_check = function (msg) {
+                       _root.pass(msg);
                };
-               xpass_check = function (msg) {
-                       xpass(msg);
+               _root.xpass_check = function (msg) {
+                       _root.xpass(msg);
                };
-               fail_check = function (msg) {
-                       fail(msg);
+               _root.fail_check = function (msg) {
+                       _root.fail(msg);
                };
-               xfail_check = function (msg) {
-                       xfail(msg);
+               _root.xfail_check = function (msg) {
+                       _root.xfail(msg);
                };
 
                // make __shared_assets visible (in case it didnt' work before)

Index: testsuite/actionscript.all/with.as
===================================================================
RCS file: /sources/gnash/gnash/testsuite/actionscript.all/with.as,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -b -r1.20 -r1.21
--- testsuite/actionscript.all/with.as  1 Oct 2007 06:33:54 -0000       1.20
+++ testsuite/actionscript.all/with.as  1 Oct 2007 07:22:12 -0000       1.21
@@ -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: with.as,v 1.20 2007/10/01 06:33:54 strk Exp $";
+rcsid="$Id: with.as,v 1.21 2007/10/01 07:22:12 strk Exp $";
 
 #include "check.as"
 
@@ -324,5 +324,5 @@
 #if OUTPUT_VERSION < 6
  check_totals(26);
 #else
- xcheck_totals(55); // a-ah!
+ check_totals(55); // a-ah!
 #endif




reply via email to

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