You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@heron.apache.org by GitBox <gi...@apache.org> on 2019/01/03 02:57:21 UTC

[GitHub] nwangtw closed pull request #3143: Fix integration test script on mac

nwangtw closed pull request #3143: Fix integration test script on mac
URL: https://github.com/apache/incubator-heron/pull/3143
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/scripts/run_integration_test.sh b/scripts/run_integration_test.sh
index 07380c75ae..92394df2b9 100755
--- a/scripts/run_integration_test.sh
+++ b/scripts/run_integration_test.sh
@@ -38,7 +38,7 @@ SCALA_TESTS_DIR="integration_test/src/scala/org/apache/heron/integration_test/to
 
 # Parse arguments
 LANGUAGE="all"
-TESTS_PATTERN=".*"
+TESTS_PATTERN="[^\n]+"
 if [ "$1" != "" ]; then
   if [ "$1" == "--help" ] || [ "$1" == "-h" ];then
     echo "Usage:"
@@ -97,7 +97,7 @@ fi
 
 # run the java integration tests
 if [ "$LANGUAGE" = "all" ] || [ "$LANGUAGE" = "java" ]; then
-echo "Run the Java integration tests"
+  echo "Run the Java integration tests"
   ${TEST_RUNNER} \
     -hc ~/.heron/bin/heron -tb ${JAVA_INTEGRATION_TESTS_BIN} \
     -rh localhost -rp 8080 \
@@ -108,7 +108,7 @@ fi
 
 # run the python integration tests
 if [ "$LANGUAGE" = "all" ] || [ "$LANGUAGE" = "python" ]; then
-echo "Run the Python integration tests"
+  echo "Run the Python integration tests"
   ${TEST_RUNNER} \
     -hc ~/.heron/bin/heron -tb ${PYTHON_INTEGRATION_TESTS_BIN} \
     -rh localhost -rp 8080 \


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services