mirror of
https://github.com/ceph/ceph
synced 2025-01-03 17:42:36 +00:00
cf294777ea
Signed-off-by: Sage Weil <sage@redhat.com>
12 lines
248 B
Bash
Executable File
12 lines
248 B
Bash
Executable File
#!/bin/sh -ex
|
|
|
|
relpath=$(dirname $0)/../../../src/test/pybind
|
|
|
|
if [ -n "${VALGRIND}" ]; then
|
|
valgrind --tool=${VALGRIND} --suppressions=${TESTDIR}/valgrind.supp \
|
|
nosetests -v $relpath/test_rbd
|
|
else
|
|
nosetests -v $relpath/test_rbd
|
|
fi
|
|
exit 0
|