summaryrefslogtreecommitdiff
path: root/testprogs/blackbox/dbcheck.sh
blob: 1ea7811df612bd470f97d7ac758ecb40f6a8495c (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
#!/bin/sh

if [ $# -lt 1 ]; then
cat <<EOF
Usage: dbcheck.sh PREFIX
EOF
exit 1;
fi

PREFIX="$1"
shift 1

. `dirname $0`/subunit.sh

dbcheck() {
	$BINDIR/samba-tool dbcheck --cross-ncs $@
}

reindex() {
	$BINDIR/samba-tool dbcheck --reindex
}

testit "dbcheck" dbcheck
testit "reindex" reindex

exit $failed