]> git.proxmox.com Git - ceph.git/blob - ceph/qa/workunits/rbd/test_librbd_python.sh
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / qa / workunits / rbd / test_librbd_python.sh
1 #!/bin/sh -ex
2
3 relpath=$(dirname $0)/../../../src/test/pybind
4
5 if [ -n "${VALGRIND}" ]; then
6 valgrind --tool=${VALGRIND} --suppressions=${TESTDIR}/valgrind.supp \
7 nosetests -v $relpath/test_rbd.py
8 else
9 nosetests -v $relpath/test_rbd.py
10 fi
11 exit 0