summaryrefslogtreecommitdiffstats
path: root/src/test/run-rbd-unit-tests.sh
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-21 11:54:28 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-21 11:54:28 +0000
commite6918187568dbd01842d8d1d2c808ce16a894239 (patch)
tree64f88b554b444a49f656b6c656111a145cbbaa28 /src/test/run-rbd-unit-tests.sh
parentInitial commit. (diff)
downloadceph-b26c4052f3542036551aa9dec9caa4226e456195.tar.xz
ceph-b26c4052f3542036551aa9dec9caa4226e456195.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-xsrc/test/run-rbd-unit-tests.sh25
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