blob: b143436303873373fb5b40fe2f479a805b342202 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash -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"
unittest_librbd
for i in 0 1 61 109
do
RBD_FEATURES=$i unittest_librbd
done
echo OK
|