gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog testsuite/misc-mtasc.all/Makefi...


From: Zou Lunkai
Subject: [Gnash-commit] gnash ChangeLog testsuite/misc-mtasc.all/Makefi...
Date: Wed, 10 Oct 2007 05:41:05 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Zou Lunkai <zoulunkai>  07/10/10 05:41:05

Modified files:
        .              : ChangeLog 
        testsuite/misc-mtasc.all: Makefile.am 
Added files:
        testsuite/misc-mtasc.all: Base1.as Derived1.as super_test1.as 

Log message:
        * testsuite/misc-mtasc.all/Base1.as,
        * testsuite/misc-mtasc.all/Derived1.as,
        * testsuite/misc-mtasc.all/super_test1.as, Makefile.am: test for super,
          detected an unexpected 'ActionLimit hit'. Gnash discarded all actions 
after the
          'ActionLimit hit', so 'make check' still couldn't caught this bug 
automatically. 
          Anyhow, this test file should help fixing SchedulerTour.swf.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.4582&r2=1.4583
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/misc-mtasc.all/Makefile.am?cvsroot=gnash&r1=1.17&r2=1.18
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/misc-mtasc.all/Base1.as?cvsroot=gnash&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/misc-mtasc.all/Derived1.as?cvsroot=gnash&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/gnash/testsuite/misc-mtasc.all/super_test1.as?cvsroot=gnash&rev=1.1

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.4582
retrieving revision 1.4583
diff -u -b -r1.4582 -r1.4583
--- ChangeLog   10 Oct 2007 05:20:54 -0000      1.4582
+++ ChangeLog   10 Oct 2007 05:41:04 -0000      1.4583
@@ -1,5 +1,12 @@
 2007-10-00 Zou Lunkai <address@hidden>
        
+       * testsuite/misc-mtasc.all/Base1.as,
+       * testsuite/misc-mtasc.all/Derived1.as,
+       * testsuite/misc-mtasc.all/super_test1.as, Makefile.am: test for super,
+         detected an unexpected 'ActionLimit hit'. 
+         
+2007-10-00 Zou Lunkai <address@hidden>
+       
        * testsuite/misc-mtasc.all/function.as, Makefile.am: rename function.as 
to 
          function_test.as, fix a name conflict in a case insensitive file 
system. There
          is a Function.as in mtasc/std.

Index: testsuite/misc-mtasc.all/Makefile.am
===================================================================
RCS file: /sources/gnash/gnash/testsuite/misc-mtasc.all/Makefile.am,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -b -r1.17 -r1.18
--- testsuite/misc-mtasc.all/Makefile.am        10 Oct 2007 05:23:30 -0000      
1.17
+++ testsuite/misc-mtasc.all/Makefile.am        10 Oct 2007 05:41:05 -0000      
1.18
@@ -26,6 +26,7 @@
        enum.as \
        exception.as \
        levels.as \
+       super_test1.as \
        $(NULL)
 
 # These will get compiled to SWFs just as above, but will not be executed as a 
test

Index: testsuite/misc-mtasc.all/Base1.as
===================================================================
RCS file: testsuite/misc-mtasc.all/Base1.as
diff -N testsuite/misc-mtasc.all/Base1.as
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ testsuite/misc-mtasc.all/Base1.as   10 Oct 2007 05:41:05 -0000      1.1
@@ -0,0 +1,11 @@
+
+class Base1
+{
+  var baseCtorCalled;
+  
+  // constructor
+  function Base1()
+  {
+    this.baseCtorCalled = true;
+  }
+}

Index: testsuite/misc-mtasc.all/Derived1.as
===================================================================
RCS file: testsuite/misc-mtasc.all/Derived1.as
diff -N testsuite/misc-mtasc.all/Derived1.as
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ testsuite/misc-mtasc.all/Derived1.as        10 Oct 2007 05:41:05 -0000      
1.1
@@ -0,0 +1,14 @@
+
+import Base1;
+
+class Derived1 extends Base1
+{
+  var derived1CtorCalled;
+  
+  // constructor
+  function Derived1()
+  {
+    super();
+    this.derived1CtorCalled = true;
+  }
+}

Index: testsuite/misc-mtasc.all/super_test1.as
===================================================================
RCS file: testsuite/misc-mtasc.all/super_test1.as
diff -N testsuite/misc-mtasc.all/super_test1.as
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ testsuite/misc-mtasc.all/super_test1.as     10 Oct 2007 05:41:05 -0000      
1.1
@@ -0,0 +1,25 @@
+#include "check.as"
+
+import Derived1;
+
+class Derived11 extends Derived1
+{
+  var derived11CtorCalled;
+  
+  // constructor
+  function Derived11()
+  {
+    super();
+    this.derived11CtorCalled = true;
+  }
+
+       static function main()
+       {
+          var derivedObj = new Derived11();
+          
+          check_equals(derivedObj.derived11CtorCalled, true);
+          check_equals(derivedObj.derived1CtorCalled, true);
+          check_equals(derivedObj.baseCtorCalled, true);
+          Dejagnu.done();
+       }
+}




reply via email to

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