summaryrefslogtreecommitdiffstats
path: root/src/ceph/qa/workunits/rbd/test_librbd.sh
blob: 447306bb41c97e6d0b22989d895fd52fbdfa16bb (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_librbd
else
  ceph_test_librbd
fi
exit 0