This is an automated email from the ASF dual-hosted git repository. joemcdonnell pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/impala.git
commit 22276fb88c48f4fa4f2e98d0e472ca402e851e81 Author: Joe McDonnell <[email protected]> AuthorDate: Wed Aug 10 23:11:54 2022 -0700 IMPALA-11493: Fix docker-based run-workload.py test The run-workload.py smoke check runs as part of the custom cluster test segment for docker-based tests. This requires a running Impala cluster, so this fixes run-all-tests.sh to start the Impala cluster when CLUSTER_TEST=true. Change-Id: I5a07269ddf808c1470be86bb305ccf1120f4b81a Reviewed-on: http://gerrit.cloudera.org:8080/18833 Reviewed-by: Impala Public Jenkins <[email protected]> Tested-by: Impala Public Jenkins <[email protected]> --- bin/run-all-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/run-all-tests.sh b/bin/run-all-tests.sh index 9f802ba49..cb82ad693 100755 --- a/bin/run-all-tests.sh +++ b/bin/run-all-tests.sh @@ -204,7 +204,7 @@ do # there are custom-cluster tests which will leave the cluster running with specifit # flags. if [[ "$BE_TEST" == true || "$FE_TEST" == true || "$EE_TEST" == true - || "$JDBC_TEST" == true ]]; then + || "$JDBC_TEST" == true || "$CLUSTER_TEST" == true ]]; then if [[ $i == 1 || "$CLUSTER_TEST" == true ]]; then start_impala_cluster fi
