mirror of
https://github.com/ceph/ceph
synced 2024-12-22 03:22:00 +00:00
9f6ec704db
Signed-off-by: Josh Durgin <jdurgin@redhat.com>
10 lines
179 B
Bash
Executable File
10 lines
179 B
Bash
Executable File
#!/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
|