Add qa/workunits/rados/test.sh

Signed-off-by: Colin McCabe <colin.mccabe@dreamhost.com>
This commit is contained in:
Colin Patrick McCabe 2011-08-17 12:35:39 -07:00
parent 2dd5510c02
commit 930bd329e7

14
qa/workunits/rados/test.sh Executable file
View File

@ -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