From: Colin Patrick McCabe Date: Wed, 17 Aug 2011 19:41:15 +0000 (-0700) Subject: qa/workunits/rados/test.sh:explicitly invoke tests X-Git-Tag: v0.34~49^2~11 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=184c2f5d98ad35289de62dad4d1620c9ffac9b02;p=ceph.git qa/workunits/rados/test.sh:explicitly invoke tests Signed-off-by: Colin McCabe --- diff --git a/qa/workunits/rados/test.sh b/qa/workunits/rados/test.sh index 33554753f820..3cce5f81ac32 100755 --- a/qa/workunits/rados/test.sh +++ b/qa/workunits/rados/test.sh @@ -1,14 +1,12 @@ -#!/bin/sh +#!/bin/sh -e -die() { - echo "${@}" - exit 1 -} - -for f in ./test_rados_api_*; do - if [ -x "${f}" ]; then - "${f}" || die "${f} failed." - fi -done +test_rados_api_aio +test_rados_api_io +test_rados_api_list +test_rados_api_misc +test_rados_api_pool +test_rados_api_snapshots +test_rados_api_stat +test_rados_api_watch_notify exit 0