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