summaryrefslogtreecommitdiff
path: root/qa
diff options
context:
space:
mode:
authorColin Patrick McCabe <cmccabe@alumni.cmu.edu>2011-08-17 12:41:15 -0700
committerColin Patrick McCabe <cmccabe@alumni.cmu.edu>2011-08-17 12:41:15 -0700
commit184c2f5d98ad35289de62dad4d1620c9ffac9b02 (patch)
tree588453daced64b34006b7b38dcf3497dd9ce9598 /qa
parent930bd329e7e8e83ff919c5fe3a34f180dc592bde (diff)
downloadceph-184c2f5d98ad35289de62dad4d1620c9ffac9b02.tar.gz
qa/workunits/rados/test.sh:explicitly invoke tests
Signed-off-by: Colin McCabe <colin.mccabe@dreamhost.com>
Diffstat (limited to 'qa')
-rwxr-xr-xqa/workunits/rados/test.sh20
1 files changed, 9 insertions, 11 deletions
diff --git a/qa/workunits/rados/test.sh b/qa/workunits/rados/test.sh
index 33554753f82..3cce5f81ac3 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