You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by mi...@apache.org on 2015/01/21 16:13:04 UTC

git commit: [flex-sdk] [refs/heads/develop] - FLEX-34625 If it's a container, we're dealing with Flex 3 classes; if not, it means flexunit is compiled to expect an AS-only project.

Repository: flex-sdk
Updated Branches:
  refs/heads/develop f27ea3b8f -> 6614d52d2


FLEX-34625 If it's a container, we're dealing with Flex 3 classes; if not, it means flexunit is compiled to expect an AS-only project.


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/6614d52d
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/6614d52d
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/6614d52d

Branch: refs/heads/develop
Commit: 6614d52d20eebdb3fefa0a6ee7d2d4908765fe33
Parents: f27ea3b
Author: Mihai Chira <mi...@apache.org>
Authored: Wed Jan 21 15:11:25 2015 +0000
Committer: Mihai Chira <mi...@apache.org>
Committed: Wed Jan 21 15:12:31 2015 +0000

----------------------------------------------------------------------
 .../spark/src/tests/spark/skins/spark/FLEX_34625_Tests.as         | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/6614d52d/frameworks/projects/spark/src/tests/spark/skins/spark/FLEX_34625_Tests.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/spark/src/tests/spark/skins/spark/FLEX_34625_Tests.as b/frameworks/projects/spark/src/tests/spark/skins/spark/FLEX_34625_Tests.as
index 665e1f8..9c8193d 100644
--- a/frameworks/projects/spark/src/tests/spark/skins/spark/FLEX_34625_Tests.as
+++ b/frameworks/projects/spark/src/tests/spark/skins/spark/FLEX_34625_Tests.as
@@ -61,8 +61,11 @@ package tests.spark.skins.spark {
         public function test_focus_skin_with_zero_focus_thickness():void
         {
             //from setUp(), for debugging
+            trace("UIImpersonator root:" + UIImpersonator.testDisplay);
+
             assertNotNull("UIImpersonator is not available!", UIImpersonator.testDisplay);
             assertTrue("It's not a Sprite!", UIImpersonator.testDisplay is Sprite);
+            assertTrue("It's not a Container!", UIImpersonator.testDisplay is Container);
             assertTrue("It's not a Group!", UIImpersonator.testDisplay is Group);
             assertTrue("It's not an IFocusManagerContainer!", UIImpersonator.testDisplay is IFocusManagerContainer);
 


Re: git commit: [flex-sdk] [refs/heads/develop] - FLEX-34625 If it's a container, we're dealing with Flex 3 classes; if not, it means flexunit is compiled to expect an AS-only project.

Posted by Erik de Bruin <er...@ixsoftware.nl>.
> Erik, is it possible for me to get permissions to run the
> flex-sdk_test job on demand? It's really difficult to debug the unit
> test if I have to wait ~30 min after a commit to see the results. (My
> username on Jenkins is mihaic.)

I have sent the credentials to your private email address.

EdB



-- 
Ix Multimedia Software

Jan Luykenstraat 27
3521 VB Utrecht

T. 06-51952295
I. www.ixsoftware.nl

Re: git commit: [flex-sdk] [refs/heads/develop] - FLEX-34625 If it's a container, we're dealing with Flex 3 classes; if not, it means flexunit is compiled to expect an AS-only project.

Posted by Mihai Chira <mi...@apache.org>.
Erik, is it possible for me to get permissions to run the
flex-sdk_test job on demand? It's really difficult to debug the unit
test if I have to wait ~30 min after a commit to see the results. (My
username on Jenkins is mihaic.)

On 21 January 2015 at 15:13,  <mi...@apache.org> wrote:
> Repository: flex-sdk
> Updated Branches:
>   refs/heads/develop f27ea3b8f -> 6614d52d2
>
>
> FLEX-34625 If it's a container, we're dealing with Flex 3 classes; if not, it means flexunit is compiled to expect an AS-only project.
>
>
> Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
> Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/6614d52d
> Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/6614d52d
> Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/6614d52d
>
> Branch: refs/heads/develop
> Commit: 6614d52d20eebdb3fefa0a6ee7d2d4908765fe33
> Parents: f27ea3b
> Author: Mihai Chira <mi...@apache.org>
> Authored: Wed Jan 21 15:11:25 2015 +0000
> Committer: Mihai Chira <mi...@apache.org>
> Committed: Wed Jan 21 15:12:31 2015 +0000
>
> ----------------------------------------------------------------------
>  .../spark/src/tests/spark/skins/spark/FLEX_34625_Tests.as         | 3 +++
>  1 file changed, 3 insertions(+)
> ----------------------------------------------------------------------
>
>
> http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/6614d52d/frameworks/projects/spark/src/tests/spark/skins/spark/FLEX_34625_Tests.as
> ----------------------------------------------------------------------
> diff --git a/frameworks/projects/spark/src/tests/spark/skins/spark/FLEX_34625_Tests.as b/frameworks/projects/spark/src/tests/spark/skins/spark/FLEX_34625_Tests.as
> index 665e1f8..9c8193d 100644
> --- a/frameworks/projects/spark/src/tests/spark/skins/spark/FLEX_34625_Tests.as
> +++ b/frameworks/projects/spark/src/tests/spark/skins/spark/FLEX_34625_Tests.as
> @@ -61,8 +61,11 @@ package tests.spark.skins.spark {
>          public function test_focus_skin_with_zero_focus_thickness():void
>          {
>              //from setUp(), for debugging
> +            trace("UIImpersonator root:" + UIImpersonator.testDisplay);
> +
>              assertNotNull("UIImpersonator is not available!", UIImpersonator.testDisplay);
>              assertTrue("It's not a Sprite!", UIImpersonator.testDisplay is Sprite);
> +            assertTrue("It's not a Container!", UIImpersonator.testDisplay is Container);
>              assertTrue("It's not a Group!", UIImpersonator.testDisplay is Group);
>              assertTrue("It's not an IFocusManagerContainer!", UIImpersonator.testDisplay is IFocusManagerContainer);
>
>