summaryrefslogtreecommitdiff
path: root/testprogs/blackbox/dbcheck-alpha13.sh
diff options
context:
space:
mode:
Diffstat (limited to 'testprogs/blackbox/dbcheck-alpha13.sh')
-rwxr-xr-xtestprogs/blackbox/dbcheck-alpha13.sh64
1 files changed, 0 insertions, 64 deletions
diff --git a/testprogs/blackbox/dbcheck-alpha13.sh b/testprogs/blackbox/dbcheck-alpha13.sh
deleted file mode 100755
index a028116075..0000000000
--- a/testprogs/blackbox/dbcheck-alpha13.sh
+++ /dev/null
@@ -1,64 +0,0 @@
-#!/bin/sh
-
-if [ $# -lt 1 ]; then
-cat <<EOF
-Usage: dbcheck.sh PREFIX
-EOF
-exit 1;
-fi
-
-PREFIX_ABS="$1"
-shift 1
-
-. `dirname $0`/subunit.sh
-
-alpha13_dir=`dirname $0`/../../source4/selftest/provisions/alpha13
-
-alpha13() {
- if test -x $BINDIR/tdbrestore;
- then
- `dirname $0`/../../source4/selftest/provisions/undump.sh $alpha13_dir $PREFIX_ABS/alpha13 $BINDIR/tdbrestore
- else
- `dirname $0`/../../source4/selftest/provisions/undump.sh $alpha13_dir $PREFIX_ABS/alpha13
- fi
-}
-
-reindex() {
- $BINDIR/samba-tool dbcheck --reindex -H tdb://$PREFIX_ABS/alpha13/private/sam.ldb $@
-}
-
-# This should 'fail', because it returns the number of modified records
-dbcheck() {
- $BINDIR/samba-tool dbcheck --cross-ncs --fix --yes -H tdb://$PREFIX_ABS/alpha13/private/sam.ldb $@
-}
-# But having fixed it all up, this should pass
-dbcheck_clean() {
- $BINDIR/samba-tool dbcheck --cross-ncs -H tdb://$PREFIX_ABS/alpha13/private/sam.ldb $@
-}
-
-if [ -d $alpha13_dir ]; then
- testit "alpha13" alpha13
- testit "reindex" reindex
- testit_expect_failure "dbcheck" dbcheck
- testit "dbcheck_clean" dbcheck_clean
-else
- subunit_start_test "alpha13"
- subunit_skip_test "alpha13" <<EOF
-no test provision
-EOF
-
- subunit_start_test "reindex"
- subunit_skip_test "reindex" <<EOF
-no test provision
-EOF
- subunit_start_test "dbcheck"
- subunit_skip_test "dbcheck" <<EOF
-no test provision
-EOF
- subunit_start_test "dbcheck_clean"
- subunit_skip_test "dbcheck_clean" <<EOF
-no test provision
-EOF
-fi
-
-exit $failed