mirror of
https://github.com/ceph/ceph
synced 2024-12-19 18:02:46 +00:00
5666fd61d6
When you have a relative path you have to include the extension. Weird. Signed-off-by: Sage Weil <sage@redhat.com>
12 lines
254 B
Bash
Executable File
12 lines
254 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.py
|
|
else
|
|
nosetests -v $relpath/test_rbd.py
|
|
fi
|
|
exit 0
|