From: Samuel Just Date: Thu, 23 Feb 2023 00:25:50 +0000 (-0800) Subject: qa/.../osd-scrub-test.sh: add per-test log lines X-Git-Tag: v19.0.0~1591^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=841903dafc1077fe1179018b4b2343864bdcdab4;p=ceph.git qa/.../osd-scrub-test.sh: add per-test log lines This should make it a bit easier to find the test boundaries in the output. Signed-off-by: Samuel Just --- diff --git a/qa/standalone/scrub/osd-scrub-test.sh b/qa/standalone/scrub/osd-scrub-test.sh index 73f165380f45..d9e11be9bd20 100755 --- a/qa/standalone/scrub/osd-scrub-test.sh +++ b/qa/standalone/scrub/osd-scrub-test.sh @@ -29,9 +29,13 @@ function run() { export -n CEPH_CLI_TEST_DUP_COMMAND local funcs=${@:-$(set | sed -n -e 's/^\(TEST_[0-9a-z_]*\) .*/\1/p')} for func in $funcs ; do + echo "-------------- Prepare Test $func -------------------" setup $dir || return 1 + echo "-------------- Run Test $func -----------------------" $func $dir || return 1 + echo "-------------- Teardown Test $func ------------------" teardown $dir || return 1 + echo "-------------- Complete Test $func ------------------" done }