mirror of
https://github.com/ceph/ceph
synced 2024-12-12 22:46:21 +00:00
9035349037
Signed-off-by: Jason Dillaman <dillaman@redhat.com>
13 lines
305 B
Bash
Executable File
13 lines
305 B
Bash
Executable File
#!/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
|