summaryrefslogtreecommitdiff
path: root/testprogs/blackbox/test_locktest.sh
diff options
context:
space:
mode:
Diffstat (limited to 'testprogs/blackbox/test_locktest.sh')
-rwxr-xr-xtestprogs/blackbox/test_locktest.sh28
1 files changed, 0 insertions, 28 deletions
diff --git a/testprogs/blackbox/test_locktest.sh b/testprogs/blackbox/test_locktest.sh
deleted file mode 100755
index 9cad4dafa2..0000000000
--- a/testprogs/blackbox/test_locktest.sh
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/sh
-# Blackbox tests for locktest
-# Copyright (C) 2008 Andrew Tridgell
-# based on test_smbclient.sh
-
-if [ $# -lt 5 ]; then
-cat <<EOF
-Usage: test_locktest.sh SERVER USERNAME PASSWORD DOMAIN PREFIX
-EOF
-exit 1;
-fi
-
-SERVER=$1
-USERNAME=$2
-PASSWORD=$3
-DOMAIN=$4
-PREFIX=$5
-shift 5
-failed=0
-
-samba4bindir=`dirname $0`/../../source4/bin
-locktest=$samba4bindir/locktest
-
-. `dirname $0`/subunit.sh
-
-testit "locktest" $VALGRIND $locktest //$SERVER/test1 //$SERVER/test2 --num-ops=100 -W "$DOMAIN" -U"$USERNAME%$PASSWORD" $@ || failed=`expr $failed + 1`
-
-exit $failed