From: David Zafman Date: Tue, 1 Aug 2017 20:42:29 +0000 (-0700) Subject: qa: Skip ceph-helpers.sh which is tested through test-ceph-helpers.sh X-Git-Tag: v12.2.0~31^2~15 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=e7a135877fc3c16e27b6065c5ebbc32e246f1ee1;p=ceph.git qa: Skip ceph-helpers.sh which is tested through test-ceph-helpers.sh Signed-off-by: David Zafman (cherry picked from commit d99f2a77e97c0aa7e6f0ae83e3c8731751730669) --- diff --git a/qa/run-standalone.sh b/qa/run-standalone.sh index ce86d0ef749f..82c93c56632f 100755 --- a/qa/run-standalone.sh +++ b/qa/run-standalone.sh @@ -43,6 +43,10 @@ errors=0 for f in $(cd $location ; find . -perm $exec_mode -type f) do f=$(echo $f | sed 's/\.\///') + # This is tested with misc/test-ceph-helpers.sh + if [[ "$f" = "ceph-helpers.sh" ]]; then + continue + fi if [[ "$all" = "false" ]]; then found=false for c in "${!select[@]}"