blob: e139dd7e450459f0c41bd6980ccd1fd008c7452a (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh -e
if [ -n "${VALGRIND}" ]; then
valgrind ${VALGRIND} --suppressions=${TESTDIR}/valgrind.supp \
--error-exitcode=1 ceph_test_rbd_mirror
else
ceph_test_rbd_mirror
fi
exit 0
|