From e045c7e03a22939ef9817601bb406741f2da81be Mon Sep 17 00:00:00 2001 From: sfc-gh-astachowski Date: Wed, 6 Nov 2024 11:19:33 +0100 Subject: [PATCH] Fixed testing script --- ci/container/test_component.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/container/test_component.sh b/ci/container/test_component.sh index 089161c28..0178e2b3a 100755 --- a/ci/container/test_component.sh +++ b/ci/container/test_component.sh @@ -88,7 +88,7 @@ if [[ "$is_old_driver" == "true" ]]; then verify \ --batch-mode --show-version popd >& /dev/null -elif [[ "$c" == "FipsTestSuite" ]]; then +elif [[ "$JDBC_TEST_CATEGORY" == "FipsTestSuite" ]]; then pushd FIPS >& /dev/null echo "[INFO] Run Fips tests" $MVNW_EXE -DjenkinsIT \ @@ -101,7 +101,7 @@ elif [[ "$c" == "FipsTestSuite" ]]; then --batch-mode --show-version popd >& /dev/null else - echo "[INFO] Run $c tests" + echo "[INFO] Run $JDBC_TEST_CATEGORY tests" $MVNW_EXE -DjenkinsIT \ -Djava.io.tmpdir=$WORKSPACE \ -Djacoco.skip.instrument=false \