From: Colin Patrick McCabe Date: Wed, 17 Aug 2011 19:35:39 +0000 (-0700) Subject: Add qa/workunits/rados/test.sh X-Git-Tag: v0.34~49^2~12 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=930bd329e7e8e83ff919c5fe3a34f180dc592bde;p=ceph.git Add qa/workunits/rados/test.sh Signed-off-by: Colin McCabe --- diff --git a/qa/workunits/rados/test.sh b/qa/workunits/rados/test.sh new file mode 100755 index 000000000000..33554753f820 --- /dev/null +++ b/qa/workunits/rados/test.sh @@ -0,0 +1,14 @@ +#!/bin/sh + +die() { + echo "${@}" + exit 1 +} + +for f in ./test_rados_api_*; do + if [ -x "${f}" ]; then + "${f}" || die "${f} failed." + fi +done + +exit 0