mirror of
https://github.com/samba-team/samba.git
synced 2024-12-28 07:21:54 +03:00
a9ee39cadf
we need our test suite to produce repeatable results Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Tue Oct 5 08:43:00 UTC 2010 on sn-devel-104
36 lines
764 B
Bash
Executable File
36 lines
764 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="$BUILDDIR/bin"
|
|
gentest="$samba4bindir/gentest$EXEEXT"
|
|
|
|
. `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 --num-ops=100 --ignore=$PREFIX/gentest.ignore -W "$DOMAIN" -U"$USERNAME%$PASSWORD" -U"$USERNAME%$PASSWORD" $@ || failed=`expr $failed + 1`
|
|
|
|
rm -f $PREFIX/gentest.ignore
|
|
|
|
exit $failed
|