You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by jo...@apache.org on 2019/03/14 22:09:33 UTC

[royale-asjs] branch develop updated (04263c0 -> adc73ae)

This is an automated email from the ASF dual-hosted git repository.

joshtynjala pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git.


    from 04263c0  RoyaleUnit: missed a couple of references to Testing
     new 87cfad8  RoyaleUnit: don't run tests on js-only build
     new adc73ae  Basic, Core: added comment to build script explaining why tests aren't run when env.AIR_HOME is missing

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 frameworks/projects/Basic/build.xml      | 1 +
 frameworks/projects/Core/build.xml       | 1 +
 frameworks/projects/RoyaleUnit/build.xml | 6 ++++++
 3 files changed, 8 insertions(+)


[royale-asjs] 01/02: RoyaleUnit: don't run tests on js-only build

Posted by jo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

joshtynjala pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git

commit 87cfad82cc2a3c9f09c0a4bfd52da93ca0d2dc86
Author: Josh Tynjala <jo...@apache.org>
AuthorDate: Thu Mar 14 15:08:50 2019 -0700

    RoyaleUnit: don't run tests on js-only build
---
 frameworks/projects/RoyaleUnit/build.xml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/frameworks/projects/RoyaleUnit/build.xml b/frameworks/projects/RoyaleUnit/build.xml
index 990da7e..16d5fb3 100644
--- a/frameworks/projects/RoyaleUnit/build.xml
+++ b/frameworks/projects/RoyaleUnit/build.xml
@@ -51,6 +51,12 @@
                 <available file="${basedir}/src/test/royale/build.xml" />
             </not>
         </condition>
+        <!-- exclude from js-only build -->
+        <condition property="skip-tests" >
+            <not>
+                <isset property="env.AIR_HOME" />
+            </not>
+        </condition>
     </target>
     
     <target name="test" depends="check-for-tests,check-compiler" unless="skip-tests">


[royale-asjs] 02/02: Basic, Core: added comment to build script explaining why tests aren't run when env.AIR_HOME is missing

Posted by jo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

joshtynjala pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git

commit adc73ae40b41c2d4b0f1c9c41ae1b814924f0f95
Author: Josh Tynjala <jo...@apache.org>
AuthorDate: Thu Mar 14 15:09:26 2019 -0700

    Basic, Core: added comment to build script explaining why tests aren't run when env.AIR_HOME is missing
---
 frameworks/projects/Basic/build.xml | 1 +
 frameworks/projects/Core/build.xml  | 1 +
 2 files changed, 2 insertions(+)

diff --git a/frameworks/projects/Basic/build.xml b/frameworks/projects/Basic/build.xml
index 531eefc..b8f65fc 100644
--- a/frameworks/projects/Basic/build.xml
+++ b/frameworks/projects/Basic/build.xml
@@ -50,6 +50,7 @@
                 <available file="${basedir}/src/test/royale/build.xml" />
             </not>
         </condition>
+        <!-- exclude from js-only build -->
         <condition property="skip-tests" >
             <not>
                 <isset property="env.AIR_HOME" />
diff --git a/frameworks/projects/Core/build.xml b/frameworks/projects/Core/build.xml
index b801f83..df054ca 100644
--- a/frameworks/projects/Core/build.xml
+++ b/frameworks/projects/Core/build.xml
@@ -50,6 +50,7 @@
                 <available file="${basedir}/src/test/royale/build.xml" />
             </not>
         </condition>
+        <!-- exclude from js-only build -->
         <condition property="skip-tests" >
             <not>
                 <isset property="env.AIR_HOME" />