1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-08 21:18:16 +03:00
samba-mirror/source4/torture/tests/test_gentest.sh
Andreas Schneider 2a0471df01 s4:torture: Change -U|--user to --user1 and --user2
The '-U' option is already defined by the default cmdline parser!

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
2021-06-16 00:34:38 +00:00

36 lines
801 B
Bash
Executable File

#!/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 PREFIX
EOF
exit 1;
fi
SERVER=$1
USERNAME=$2
PASSWORD=$3
DOMAIN=$4
PREFIX=$5
shift 5
failed=0
samba4bindir="$BINDIR"
gentest="$samba4bindir/gentest"
. `dirname $0`/../../../testprogs/blackbox/subunit.sh
cat <<EOF > $PREFIX/gentest.ignore
all_info.out.fname
internal_information.out.file_id
EOF
testit "gentest" $VALGRIND $gentest //$SERVER/test1 //$SERVER/test2 --seed=1 --seedsfile=$PREFIX/gentest_seeds.dat --num-ops=100 --ignore=$PREFIX/gentest.ignore -W "$DOMAIN" --user1="$USERNAME%$PASSWORD" --user2="$USERNAME%$PASSWORD" $@ || failed=`expr $failed + 1`
rm -f $PREFIX/gentest.ignore
exit $failed