blob: 656a5bd165739d913c4d10529eb4e2ed7c63c639 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh -ex
relpath=$(dirname $0)/../../../src/test/pybind
if [ -n "${VALGRIND}" ]; then
valgrind ${VALGRIND} --suppressions=${TESTDIR}/valgrind.supp \
--errors-for-leak-kinds=definite --error-exitcode=1 \
nosetests -v $relpath/test_rbd.py
else
nosetests -v $relpath/test_rbd.py
fi
exit 0
|