mirror of
https://github.com/ceph/ceph
synced 2024-12-17 17:05:42 +00:00
30b762bc13
Signed-off-by: Jason Dillaman <dillaman@redhat.com>
10 lines
171 B
Bash
Executable File
10 lines
171 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
if [ -n "${VALGRIND}" ]; then
|
|
valgrind --tool=${VALGRIND} --suppressions=${TESTDIR}/valgrind.supp \
|
|
ceph_test_librbd
|
|
else
|
|
ceph_test_librbd
|
|
fi
|
|
exit 0
|