gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] [SCM] Gnash branch, master, updated. 90875ad27343f2b56154


From: Sandro Santilli
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. 90875ad27343f2b5615428bd43f3468feb36d526
Date: Wed, 22 Sep 2010 11:53:45 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnash".

The branch, master has been updated
       via  90875ad27343f2b5615428bd43f3468feb36d526 (commit)
      from  00b3461314a7b8ecc897857c6693b63d01b4e5ed (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit//commit/?id=90875ad27343f2b5615428bd43f3468feb36d526


commit 90875ad27343f2b5615428bd43f3468feb36d526
Author: Sandro Santilli <address@hidden>
Date:   Wed Sep 22 13:53:26 2010 +0200

    Add test for display object (childs) casing

diff --git a/testsuite/misc-ming.all/case6.as b/testsuite/misc-ming.all/case6.as
index bf3225f..a6e3654 100644
--- a/testsuite/misc-ming.all/case6.as
+++ b/testsuite/misc-ming.all/case6.as
@@ -25,10 +25,19 @@ if ( this == _root ) {
                        check_equals(swf7.A, 'a');
                        check_equals(swf7.c, 'C');
                        check_equals(swf7.C, 'C');
-                       totals(6);
+
+                       check_equals(typeof(swf7.mca), 'movieclip');
+                       check_equals(typeof(swf7.mcA), 'movieclip');
+
+                       check_equals(typeof(swf7.mcb), 'movieclip');
+                       check_equals(typeof(swf7.mcB), 'movieclip');
+
+                       totals(10);
                }
        };
 } else {
+       createEmptyMovieClip("mcA", 3);
+       createEmptyMovieClip("mcb", 4);
        a='a';
        B='B';
        c='c';
diff --git a/testsuite/misc-ming.all/case7.as b/testsuite/misc-ming.all/case7.as
index 6c7fcfb..0e23b77 100644
--- a/testsuite/misc-ming.all/case7.as
+++ b/testsuite/misc-ming.all/case7.as
@@ -27,11 +27,20 @@ if ( this == _root ) {
                        check_equals(swf6.C, undefined); 
                        check_equals(swf6.d, undefined); 
                        check_equals(swf6.D, 'd'); 
-                       totals(8);
+
+                       check_equals(typeof(swf6.mca), 'undefined');
+                       check_equals(typeof(swf6.mcA), 'movieclip');
+
+                       check_equals(typeof(swf6.mcb), 'movieclip');
+                       check_equals(typeof(swf6.mcB), 'undefined');
+
+                       totals(12);
                }
        };
 
 } else {
+       createEmptyMovieClip("mcA", 3);
+       createEmptyMovieClip("mcb", 4);
        a='a';
        A='A';
        B='B';

-----------------------------------------------------------------------

Summary of changes:
 testsuite/misc-ming.all/case6.as |   11 ++++++++++-
 testsuite/misc-ming.all/case7.as |   11 ++++++++++-
 2 files changed, 20 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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