]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
qa/.../osd-scrub-test.sh: add per-test log lines
authorSamuel Just <sjust@redhat.com>
Thu, 23 Feb 2023 00:25:50 +0000 (16:25 -0800)
committerSamuel Just <sjust@redhat.com>
Thu, 23 Feb 2023 00:25:50 +0000 (16:25 -0800)
This should make it a bit easier to find the test boundaries in the output.

Signed-off-by: Samuel Just <sjust@redhat.com>
qa/standalone/scrub/osd-scrub-test.sh

index 73f165380f4569eca1438db7ae1f8fddd41beae3..d9e11be9bd20bc2a2135c50f31d5897e73b5391c 100755 (executable)
@@ -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
 }