mirror of
https://github.com/ceph/ceph
synced 2024-12-26 21:43:10 +00:00
10 lines
179 B
Bash
10 lines
179 B
Bash
|
#!/bin/sh -e
|
||
|
|
||
|
if [ -n "${VALGRIND}" ]; then
|
||
|
valgrind --tool=${VALGRIND} --suppressions=${TESTDIR}/valgrind.supp \
|
||
|
ceph_test_rbd_mirror
|
||
|
else
|
||
|
ceph_test_rbd_mirror
|
||
|
fi
|
||
|
exit 0
|