ceph/qa/workunits/rbd/test_librbd_python.sh
Sage Weil 5666fd61d6 qa/workunits: include extension for nose tests
When you have a relative path you have to include the extension.
Weird.

Signed-off-by: Sage Weil <sage@redhat.com>
2016-12-19 14:08:11 -05:00

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