summaryrefslogtreecommitdiffstats
path: root/src/test/run-cli-tests
blob: 9572c68342f05f3cabda45bfde9403cc0e63dd3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/bin/sh
set -e

SRCDIR="$(dirname "$0")"

# build directory, if different, can be passed as an argument;
# it is expected to point to the equivalent subdirectory of the
# tree as where this script is stored
BUILDDIR="$SRCDIR"
case "$1" in
    ''|-*)
	# not set or looks like a flag to cram
        ;;
    *)
	# looks like the builddir
	BUILDDIR="$1"
	shift
	;;
esac

VENV="$BUILDDIR/virtualenv"
CRAM_BIN="$VENV/bin/cram"
if [ ! -e "$CRAM_BIN" ]; then
    # With "make distcheck", the source directory must be read-only. I
    # patched cram to support that. See upstream ticket at
    # https://bitbucket.org/brodie/cram/issue/9/allow-read-only-directories-for-t
    # -- tv@inktank.com
    python3 -m venv "$VENV" && $VENV/bin/pip --log "$VENV"/log.txt \
        install git+https://github.com/ceph/cram.git@0.7-error-dir#egg=cram
fi

SRCDIR_ABS="$(readlink -f "$SRCDIR")"
BUILDDIR_ABS="$(readlink -f "$BUILDDIR")"
FAKE_HOME="$BUILDDIR_ABS/fake_home"
mkdir -p "$FAKE_HOME"

# cram doesn't like seeing the same foo.t basename twice on the same
# run, so run it once per directory
FAILED=0
FAILEDTOOLS=""
for tool in "$SRCDIR"/cli/*; do
    toolname="$(basename "$tool")"
    install -d -m0755 -- "$BUILDDIR/cli/$toolname"
    if ! env -i \
	PATH="$BUILDDIR_ABS/..:$SRCDIR_ABS/..:$PATH" \
	CEPH_CONF=/dev/null \
	CEPH_ARGS="--no-mon-config" \
	CCACHE_DIR="$CCACHE_DIR" \
	CC="$CC" \
	CXX="$CXX" \
	HOME="$FAKE_HOME" \
	"$SRCDIR/run-cli-tests-maybe-unset-ccache" \
	"$CRAM_BIN" -v "$@"  --error-dir="$BUILDDIR/cli/$toolname" -- "$tool"/*.t
    then
	FAILED=1
	FAILEDTOOLS="$FAILEDTOOLS $toolname"
    fi
done

if [ $FAILED -eq 1 ]; then
    echo "Tests that failed: $FAILEDTOOLS"
fi

exit "$FAILED"