mirror of
https://github.com/ceph/ceph
synced 2024-12-20 18:33:44 +00:00
9035349037
Signed-off-by: Jason Dillaman <dillaman@redhat.com>
10 lines
191 B
Bash
Executable File
10 lines
191 B
Bash
Executable File
#!/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
|