Joe McDonnell created IMPALA-11493:
--------------------------------------
Summary: run-all-tests.sh needs to start Impala for first run of
custom cluster tests
Key: IMPALA-11493
URL: https://issues.apache.org/jira/browse/IMPALA-11493
Project: IMPALA
Issue Type: Bug
Components: Infrastructure
Affects Versions: Impala 4.2.0
Reporter: Joe McDonnell
On docker-based tests, the task that runs the custom cluster tests also runs a
basic test for run-workload.py. In order for that test to succeed, the Impala
cluster needs to already be running.
So, this code for starting the Impala cluster should also run when
CLUSTER_TEST=true (i.e. include it in the outer if):
{noformat}
if [[ "$BE_TEST" == true || "$FE_TEST" == true || "$EE_TEST" == true
|| "$JDBC_TEST" == true ]]; then
if [[ $i == 1 || "$CLUSTER_TEST" == true ]]; then
start_impala_cluster
fi
fi{noformat}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)