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/05/23 23:12:49 UTC

[royale-asjs] branch develop updated: Frameworks: disable JS tests in main build for now

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


The following commit(s) were added to refs/heads/develop by this push:
     new 2dbc404  Frameworks: disable JS tests in main build for now
2dbc404 is described below

commit 2dbc404025b33f622b36b2c04db0266d4e0e6c55
Author: Josh Tynjala <jo...@apache.org>
AuthorDate: Thu May 23 16:12:43 2019 -0700

    Frameworks: disable JS tests in main build for now
    
    On macOS, the RoyaleUnit task keeps control over the WebSocket's port for a short time after the task has completed. When this happens, running the RoyaleUnit task again fails because the port is still not available. Can't enable JS tests in main build until this is fixed. Doesn't seem to affect Windows.
---
 frameworks/projects/Basic/build.xml      | 3 ++-
 frameworks/projects/Core/build.xml       | 3 ++-
 frameworks/projects/RoyaleUnit/build.xml | 2 +-
 3 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/frameworks/projects/Basic/build.xml b/frameworks/projects/Basic/build.xml
index 64d4b26..5d89ebf 100644
--- a/frameworks/projects/Basic/build.xml
+++ b/frameworks/projects/Basic/build.xml
@@ -60,7 +60,8 @@
     
     <target name="test" depends="check-for-tests,check-compiler" unless="skip-tests">
         <ant dir="src/test/royale" />
-        <antcall target="test-js" />
+        <!-- temporarily disabled because royaleunit task crashes on macOS -->
+        <!--<antcall target="test-js" />-->
     </target>
     
     <target name="test-js">
diff --git a/frameworks/projects/Core/build.xml b/frameworks/projects/Core/build.xml
index 4404708..d2f8a3d 100644
--- a/frameworks/projects/Core/build.xml
+++ b/frameworks/projects/Core/build.xml
@@ -60,7 +60,8 @@
     
     <target name="test" depends="check-for-tests,check-compiler" unless="skip-tests">
         <ant dir="src/test/royale" />
-        <antcall target="test-js" />
+        <!-- temporarily disabled because royaleunit task crashes on macOS -->
+        <!--<antcall target="test-js" />-->
     </target>
     
     <target name="test-js">
diff --git a/frameworks/projects/RoyaleUnit/build.xml b/frameworks/projects/RoyaleUnit/build.xml
index 51a5229..38055a0 100644
--- a/frameworks/projects/RoyaleUnit/build.xml
+++ b/frameworks/projects/RoyaleUnit/build.xml
@@ -61,7 +61,7 @@
     
     <target name="test" depends="check-for-tests,check-compiler" unless="skip-tests">
         <ant dir="src/test/royale" />
-        <antcall target="test-js" />
+        <!--<antcall target="test-js" />-->
     </target>
     
     <target name="test-js">