diff options
author | Andrew Tridgell <tridge@samba.org> | 2008-02-15 14:55:31 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2008-02-15 14:55:31 +1100 |
commit | 66e8bc9dac291946986d1eb202fc2ed584330118 (patch) | |
tree | d54d34b461c95293c1289c5a5c7ca56d6ceefd03 /testprogs/blackbox | |
parent | 63c099c51a71afad67dce2d2df842b934412117b (diff) | |
download | samba-66e8bc9dac291946986d1eb202fc2ed584330118.tar.gz |
converted locktest to use popt and cmdline utility code
(This used to be commit 625ea49a95cbdb507ea5b191f75ffa27e25cdb90)
Diffstat (limited to 'testprogs/blackbox')
-rwxr-xr-x | testprogs/blackbox/test_locktest.sh | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/testprogs/blackbox/test_locktest.sh b/testprogs/blackbox/test_locktest.sh index 60597ba83fe..c08b408107c 100755 --- a/testprogs/blackbox/test_locktest.sh +++ b/testprogs/blackbox/test_locktest.sh @@ -3,9 +3,9 @@ # Copyright (C) 2008 Andrew Tridgell # based on test_smbclient.sh -if [ $# -lt 4 ]; then +if [ $# -lt 5 ]; then cat <<EOF -Usage: test_locktest.sh SERVER USERNAME PASSWORD DOMAIN +Usage: test_locktest.sh SERVER USERNAME PASSWORD DOMAIN PREFIX EOF exit 1; fi @@ -14,7 +14,8 @@ SERVER=$1 USERNAME=$2 PASSWORD=$3 DOMAIN=$4 -shift 4 +PREFIX=$5 +shift 5 failed=0 samba4bindir=`dirname $0`/../../source/bin @@ -35,6 +36,6 @@ testit() { return $status } -testit "locktest" $VALGRIND $locktest //$SERVER/test1 //$SERVER/test2 -o 100 -W "$DOMAIN" -U"$USERNAME%$PASSWORD" -U"$USERNAME%$PASSWORD" $@ || failed=`expr $failed + 1` +testit "locktest" $VALGRIND $locktest //$SERVER/test1 //$SERVER/test2 --num-ops=100 -W "$DOMAIN" -U"$USERNAME%$PASSWORD" $@ || failed=`expr $failed + 1` exit $failed |