1ea7811df612bd470f97d7ac758ecb40f6a8495c
[metze/samba/wip.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 --cross-ncs $@
17 }
18
19 reindex() {
20         $BINDIR/samba-tool dbcheck --reindex
21 }
22
23 testit "dbcheck" dbcheck
24 testit "reindex" reindex
25
26 exit $failed