diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-09-18 20:29:05 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-09-18 20:29:05 +0200 |
commit | 729ffbae086309992d7433a296fca64f6800f8fa (patch) | |
tree | 6c133d2b91ab9313da11bf8bad15f497e1b5c61f /testprogs/blackbox/test_gentest.sh | |
parent | 88ad1a936ccd2451d6dbf542a0a746ad71a3e968 (diff) | |
parent | fc7050e54c69919d754ca0adf3f2f741a501fec4 (diff) | |
download | samba-729ffbae086309992d7433a296fca64f6800f8fa.tar.gz samba-729ffbae086309992d7433a296fca64f6800f8fa.tar.bz2 samba-729ffbae086309992d7433a296fca64f6800f8fa.zip |
Merge branch 'master' of ssh://git.samba.org/data/git/samba into noejs
Conflicts:
source4/main.mk
Diffstat (limited to 'testprogs/blackbox/test_gentest.sh')
-rwxr-xr-x | testprogs/blackbox/test_gentest.sh | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/testprogs/blackbox/test_gentest.sh b/testprogs/blackbox/test_gentest.sh deleted file mode 100755 index 046f280f7d..0000000000 --- a/testprogs/blackbox/test_gentest.sh +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh -# Blackbox tests for gentest -# Copyright (C) 2008 Andrew Tridgell -# based on test_smbclient.sh - -if [ $# -lt 4 ]; then -cat <<EOF -Usage: test_gentest.sh SERVER USERNAME PASSWORD DOMAIN -EOF -exit 1; -fi - -SERVER=$1 -USERNAME=$2 -PASSWORD=$3 -DOMAIN=$4 -shift 4 -failed=0 - -samba4bindir=`dirname $0`/../../source4/bin -gentest=$samba4bindir/gentest - -. `dirname $0`/subunit.sh - -cat <<EOF > st/gentest.ignore -all_info.out.fname -internal_information.out.file_id -EOF - -testit "gentest" $VALGRIND $gentest //$SERVER/test1 //$SERVER/test2 --num-ops=100 --ignore=st/gentest.ignore -W "$DOMAIN" -U"$USERNAME%$PASSWORD" -U"$USERNAME%$PASSWORD" $@ || failed=`expr $failed + 1` - -/bin/rm -f st/gentest.ignore - -exit $failed |