gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] /srv/bzr/gnash/trunk r11084: fixed make check build error


From: Ben Limmer
Subject: [Gnash-commit] /srv/bzr/gnash/trunk r11084: fixed make check build errors (woops)
Date: Thu, 11 Jun 2009 16:23:49 -0600
User-agent: Bazaar (1.13.1)

------------------------------------------------------------
revno: 11084
committer: Ben Limmer <address@hidden>
branch nick: trunk
timestamp: Thu 2009-06-11 16:23:49 -0600
message:
  fixed make check build errors (woops)
modified:
  testsuite/as3/classes.all/events/ActivityEvent_as.hx
  testsuite/as3/classes.all/events/NetStatusEvent_as.hx
=== modified file 'testsuite/as3/classes.all/events/ActivityEvent_as.hx'
--- a/testsuite/as3/classes.all/events/ActivityEvent_as.hx      2009-06-02 
18:24:32 +0000
+++ b/testsuite/as3/classes.all/events/ActivityEvent_as.hx      2009-06-11 
22:23:49 +0000
@@ -61,21 +61,21 @@
 // Tests to see if all the methods exist. All these do is test for
 // existance of a method, and don't test the functionality at all. This
 // is primarily useful only to test completeness of the API implementation.
-       if (ValueType.typeof(x1.clone) == ValueType.TFunction) {
+       if (Type.typeof(x1.clone) == ValueType.TFunction) {
            DejaGnu.pass("ActivityEvent::clone() method exists");
        } else {
            DejaGnu.fail("ActivityEvent::clone() method doesn't exist");
        }
-       if (ValueType.typeof(x1.toString) == ValueType.TFunction) {
+       if (Type.typeof(x1.toString) == ValueType.TFunction) {
            DejaGnu.pass("ActivityEvent::toString() method exists");
        } else {
            DejaGnu.fail("ActivityEvent::toString() method doesn't exist");
        }
-       if (Std.string(x1.ACTIVITY) == "activity") {
-           DejaGnu.pass("ActivityEvent::ACTIVITY() method exists");
-       } else {
-           DejaGnu.fail("ActivityEvent::ACTIVITY() method doesn't exist");
-       }
+//     if (Std.string(x1.ACTIVITY) == "activity") {
+//         DejaGnu.pass("ActivityEvent::ACTIVITY() method exists");
+//     } else {
+//         DejaGnu.fail("ActivityEvent::ACTIVITY() method doesn't exist");
+//     }
        #end
         // Call this after finishing all tests. It prints out the totals.
         DejaGnu.done();

=== modified file 'testsuite/as3/classes.all/events/NetStatusEvent_as.hx'
--- a/testsuite/as3/classes.all/events/NetStatusEvent_as.hx     2009-06-11 
22:18:59 +0000
+++ b/testsuite/as3/classes.all/events/NetStatusEvent_as.hx     2009-06-11 
22:23:49 +0000
@@ -62,7 +62,7 @@
 // Tests to see if all the methods exist. All these do is test for
 // existance of a method, and don't test the functionality at all. This
 // is primarily useful only to test completeness of the API implementation.
-       if (Type.typeof(x1.clone) == ValueType.TFunction)) {
+       if (Type.typeof(x1.clone) == ValueType.TFunction) {
            DejaGnu.pass("NetStatusEvent::clone() method exists");
        } else {
            DejaGnu.fail("NetStatusEvent::clone() method doesn't exist");


reply via email to

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