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/04/10 12:51:37 UTC

git commit: [flex-tlf] [refs/heads/develop] - FLEX-34756 renamed the unit tests task to 'test', to match the pattern created by the sdk build script. Also renamed a misspelled variable in AllTestsSuite.

Repository: flex-tlf
Updated Branches:
  refs/heads/develop b08af46da -> fc83b76d1


FLEX-34756 renamed the unit tests task to 'test', to match the pattern created by the sdk build script. Also renamed a misspelled variable in AllTestsSuite.


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

Branch: refs/heads/develop
Commit: fc83b76d1d4be0734ad04530604ba3bb2b5a2e39
Parents: b08af46
Author: Mihai Chira <mi...@apache.org>
Authored: Fri Apr 10 12:51:09 2015 +0200
Committer: Mihai Chira <mi...@apache.org>
Committed: Fri Apr 10 12:51:09 2015 +0200

----------------------------------------------------------------------
 automation_tests/src/AllTestsSuite.as |  2 +-
 build.xml                             | 12 +++++++++---
 2 files changed, 10 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-tlf/blob/fc83b76d/automation_tests/src/AllTestsSuite.as
----------------------------------------------------------------------
diff --git a/automation_tests/src/AllTestsSuite.as b/automation_tests/src/AllTestsSuite.as
index 1e8206a..901c90f 100644
--- a/automation_tests/src/AllTestsSuite.as
+++ b/automation_tests/src/AllTestsSuite.as
@@ -58,7 +58,7 @@ package
         public var factoryImportTest:FactoryImportTest;
         public var accessibilityMethodsTest:AccessibilityMethodsTest;
         public var allChartAttributeTest:AllCharAttributeTest;
-        public var allContAttirbuteTest:AllContAttributeTest;
+        public var allContAttributeTest:AllContAttributeTest;
         public var allEventTest:AllEventTest;
         public var allParagraphAttributeTest:AllParaAttributeTest;
         public var attributeTest:AttributeTest;

http://git-wip-us.apache.org/repos/asf/flex-tlf/blob/fc83b76d/build.xml
----------------------------------------------------------------------
diff --git a/build.xml b/build.xml
index 09a27ab..ff2221c 100644
--- a/build.xml
+++ b/build.xml
@@ -61,7 +61,7 @@
       </fileset>
     </classpath>
   </taskdef>
-  <target name="all" depends="main, asTestApps,textLayout_editBar, textLayout_ui, testApps, automation_core, automation_tests, automation_apps, flexunnit_tests" description="Clean build of TLF component and associated applications"/>
+  <target name="all" depends="main, asTestApps,textLayout_editBar, textLayout_ui, testApps, automation_core, automation_tests, automation_apps, test" description="Clean build of TLF component and associated applications"/>
   <target name="main" depends="clean,textLayout" description="Clean build of textLayout.swc"/>
   <target name="clean" description="Cleans all SWCs and SWFs">
     <delete failonerror="false">
@@ -309,7 +309,13 @@
       </fileset>
     </copy>
   </target>
-  <target name="flexunnit_tests">
-    <flexunit swf="${output.dir}/apps/automation_apps/bin/VellumUnit.swf" player="flash" toDir="${output.dir}/apps/automation_apps" haltonfailure="true" verbose="true" />
+  <target name="test">
+    <flexunit
+            swf="${output.dir}/apps/automation_apps/bin/VellumUnit.swf"
+            player="flash"
+            toDir="${output.dir}/apps/automation_apps"
+            haltonfailure="true"
+            verbose="true"
+            />
   </target>
 </project>