From e08096ac78c86aeaa7679b70026f8f29b5864e25 Mon Sep 17 00:00:00 2001 From: Michal Berger Date: Thu, 9 Sep 2021 08:29:41 +0200 Subject: [PATCH] test/common: Don't log removal of tmp directories The list may end up being quite big due to the number of executed tests so drop it from the log. Signed-off-by: Michal Berger Change-Id: Id9f2823be053a7ab8c03d95830d3f63f6f5aa4d0 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/9459 Community-CI: Broadcom CI Tested-by: SPDK CI Jenkins Reviewed-by: Jim Harris Reviewed-by: Tomasz Zawadzki --- test/common/autotest_common.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/common/autotest_common.sh b/test/common/autotest_common.sh index a6ceb2da1..fea8cad75 100755 --- a/test/common/autotest_common.sh +++ b/test/common/autotest_common.sh @@ -1239,8 +1239,6 @@ function autotest_cleanup() { shopt -u nullglob if ((${#storage_fallback_purge[@]} > 0)); then - printf '* Purging old temporary test storage (%s)\n' \ - "${storage_fallback_purge[*]}" >&2 rm -rf "${storage_fallback_purge[@]}" fi }