From 2071ad7ae601a4b888dafff7d343380a100d147b Mon Sep 17 00:00:00 2001 From: Marian Csontos Date: Tue, 19 May 2026 04:10:20 +0200 Subject: [PATCH] gating: Add info about running test to console Related: RHEL-163449 --- tests/gating/main.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/gating/main.sh b/tests/gating/main.sh index 0a7272c..2c5f995 100755 --- a/tests/gating/main.sh +++ b/tests/gating/main.sh @@ -32,7 +32,7 @@ cd lvm2-test make -C test # NOTE: testsuite works either when installed OR with make check make -C test install -# NOTE: clean up to remove binaries, just in case! +# NOTE: clean up to remove built binaries, just in case! make clean RUNNER="/usr/bin/lvm2-testsuite" @@ -63,6 +63,9 @@ export LVM_TEST_DIR=/dev/shm/lvm2-slave mount -o remount,dev /dev/shm for test_script in $lvm2_tests; do + echo "################################################################################" > /dev/console + echo "# Running test $test_script" > /dev/console + echo "################################################################################" > /dev/console for flavour in $flavours; do # TODO: Repeat failure if ??? "$RUNNER" --batch --flavours "$flavour" --only "$test_script" 2>&1 | tee -a "$TESTSUITE_OUT_FILE"