]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
qa: Skip ceph-helpers.sh which is tested through test-ceph-helpers.sh
authorDavid Zafman <dzafman@redhat.com>
Tue, 1 Aug 2017 20:42:29 +0000 (13:42 -0700)
committerDavid Zafman <dzafman@redhat.com>
Thu, 10 Aug 2017 23:03:34 +0000 (16:03 -0700)
Signed-off-by: David Zafman <dzafman@redhat.com>
(cherry picked from commit d99f2a77e97c0aa7e6f0ae83e3c8731751730669)

qa/run-standalone.sh

index ce86d0ef749f2f1cf4500035b36b933206c6f900..82c93c56632f45f672129370fbc825b6405b92a9 100755 (executable)
@@ -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[@]}"