summaryrefslogtreecommitdiffstats
path: root/src/test/run-rbd-unit-tests.sh
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:45:59 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:45:59 +0000
commit19fcec84d8d7d21e796c7624e521b60d28ee21ed (patch)
tree42d26aa27d1e3f7c0b8bd3fd14e7d7082f5008dc /src/test/run-rbd-unit-tests.sh
parentInitial commit. (diff)
downloadceph-upstream.tar.xz
ceph-upstream.zip
Adding upstream version 16.2.11+ds.upstream/16.2.11+dsupstream
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