b344eb44c474d1ca8a40a410a84a537149dc88f3
[kai/samba-autobuild/.git] / testprogs / blackbox / dbcheck.sh
1 #!/bin/sh
2
3 if [ $# -lt 1 ]; then
4 cat <<EOF
5 Usage: dbcheck.sh PREFIX
6 EOF
7 exit 1;
8 fi
9
10 PREFIX="$1"
11 shift 1
12
13 . `dirname $0`/subunit.sh
14
15 dbcheck() {
16         $BINDIR/samba-tool dbcheck --fix --cross-ncs --yes $@
17 }
18
19 reindex() {
20         $BINDIR/samba-tool dbcheck --reindex
21 }
22
23 testit "dbcheck" dbcheck
24 testit "reindex" reindex
25
26 exit $failed