Skip to content

Commit b3d283f

Browse files
authored
improve system test failure logging (#65410)
1 parent c74849b commit b3d283f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

scripts/ci/testing/run_system_tests.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,15 @@ export COLOR_RED=$'\e[31m'
2020
export COLOR_YELLOW=$'\e[33m'
2121
export COLOR_RESET=$'\e[0m'
2222

23+
TEST_TO_RUN="${*:-all configured system tests}"
24+
2325
set +e
2426
breeze testing system-tests "${@}"
2527
RESULT=$?
2628
set -e
2729
if [[ ${RESULT} != "0" ]]; then
2830
echo
29-
echo "${COLOR_RED}The ${TEST_GROUP} system test ${TEST_TO_RUN} failed! Giving up${COLOR_RESET}"
31+
echo "${COLOR_RED}The system tests (${TEST_TO_RUN}) failed! Giving up${COLOR_RESET}"
3032
echo
3133
exit ${RESULT}
3234
fi

0 commit comments

Comments
 (0)