From 79b8d27dabccb8bfd556a0f0df476bc43c64ae87 Mon Sep 17 00:00:00 2001 From: Katarina Strenkova Date: Wed, 15 Oct 2025 05:56:25 -0400 Subject: [PATCH] Remove double slash from paths After run_tempest.sh refactor some paths now have double slash in them by doing incorrect path combination. This patch removes specific slashes that are causing this problem. --- container-images/tcib/base/os/tempest/run_tempest.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/container-images/tcib/base/os/tempest/run_tempest.sh b/container-images/tcib/base/os/tempest/run_tempest.sh index 4bd20bb..542f11b 100644 --- a/container-images/tcib/base/os/tempest/run_tempest.sh +++ b/container-images/tcib/base/os/tempest/run_tempest.sh @@ -91,7 +91,7 @@ set -x RETURN_VALUE=0 HOMEDIR=/var/lib/tempest -TEMPEST_PATH="${HOMEDIR}/" +TEMPEST_PATH="${HOMEDIR}" TEMPEST_DIR="${HOMEDIR}/openshift" CONCURRENCY="${CONCURRENCY:-}" TEMPESTCONF_ARGS="" @@ -116,9 +116,9 @@ if [ "${TEMPEST_DEBUG_MODE}" == true ]; then fi [[ -z "${TEMPEST_WORKFLOW_STEP_DIR_NAME}" ]] && TEMPEST_WORKFLOW_STEP_DIR_NAME="tempest" -[[ ! -z "${USE_EXTERNAL_FILES}" ]] && TEMPEST_PATH="${HOMEDIR}/external_files/" +[[ ! -z "${USE_EXTERNAL_FILES}" ]] && TEMPEST_PATH="${HOMEDIR}/external_files" -TEMPEST_LOGS_DIR="${TEMPEST_PATH}/${TEMPEST_WORKFLOW_STEP_DIR_NAME}/" +TEMPEST_LOGS_DIR="${TEMPEST_PATH}/${TEMPEST_WORKFLOW_STEP_DIR_NAME}" FAILED_TESTS_FILE="${TEMPEST_LOGS_DIR}/stestr_failing.txt" [[ "${TEMPESTCONF_CREATE:=true}" == true ]] && TEMPESTCONF_ARGS+="--create "