diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:54:28 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:54:28 +0000 |
commit | e6918187568dbd01842d8d1d2c808ce16a894239 (patch) | |
tree | 64f88b554b444a49f656b6c656111a145cbbaa28 /src/test/run-rbd-unit-tests.sh | |
parent | Initial commit. (diff) | |
download | ceph-e6918187568dbd01842d8d1d2c808ce16a894239.tar.xz ceph-e6918187568dbd01842d8d1d2c808ce16a894239.zip |
Adding upstream version 18.2.2.upstream/18.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/run-rbd-unit-tests.sh')
-rwxr-xr-x | src/test/run-rbd-unit-tests.sh | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/test/run-rbd-unit-tests.sh b/src/test/run-rbd-unit-tests.sh new file mode 100755 index 000000000..8c5a29ee6 --- /dev/null +++ b/src/test/run-rbd-unit-tests.sh @@ -0,0 +1,25 @@ +#!/usr/bin/env bash +set -ex + +# this should be run from the src directory in the ceph.git + +source $(dirname $0)/detect-build-env-vars.sh +PATH="$CEPH_BIN:$PATH" + +if [ $# = 0 ]; then + # mimic the old behaviour + TESTS='0 1 61 109 127' + unset RBD_FEATURES; unittest_librbd +elif [ $# = 1 -a "${1}" = N ] ; then + # new style no feature request + unset RBD_FEATURES; unittest_librbd +else + TESTS="$*" +fi + +for i in ${TESTS} +do + RBD_FEATURES=$i unittest_librbd +done + +echo OK |