mirror of
https://github.com/ceph/ceph
synced 2025-01-02 00:52:22 +00:00
5823c04542
Align with `rbd_api_tests` and skip deep_copy and breaklock tests in Crimson. Signed-off-by: Matan Breizman <mbreizma@redhat.com>
13 lines
329 B
Bash
Executable File
13 lines
329 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 \
|
|
python3 -m nose -v $relpath/test_rbd.py "$@"
|
|
else
|
|
python3 -m nose -v $relpath/test_rbd.py "$@"
|
|
fi
|
|
exit 0
|