1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-13 13:18:06 +03:00

r7387: enable extra smbtorture args to test_posix.sh

metze
(This used to be commit ee8407c916)
This commit is contained in:
Stefan Metzmacher 2005-06-08 12:12:54 +00:00 committed by Gerald (Jerry) Carter
parent c80aedc744
commit 16de998bc6

View File

@ -5,7 +5,7 @@
if [ $# -lt 3 ]; then
cat <<EOF
Usage: test_posix.sh UNC USERNAME PASSWORD <first>
Usage: test_posix.sh UNC USERNAME PASSWORD <first> <smbtorture args>
EOF
exit 1;
fi
@ -18,7 +18,8 @@ unc="$1"
username="$2"
password="$3"
start="$4"
shift 3
shift 4
ADDARGS="$*"
testit() {
trap "rm -f test.$$" EXIT
@ -46,8 +47,6 @@ tests="$tests RAW-QFSINFO RAW-QFILEINFO RAW-SFILEINFO-BUG RAW-SFILEINFO"
tests="$tests RAW-LOCK RAW-MKDIR RAW-SEEK RAW-CONTEXT RAW-MUX RAW-OPEN RAW-WRITE"
tests="$tests RAW-UNLINK RAW-READ RAW-CLOSE RAW-IOCTL RAW-SEARCH RAW-CHKPATH RAW-RENAME"
tests="$tests RAW-EAS RAW-STREAMS RAW-ACLS"
tests="$tests LOCAL-ICONV LOCAL-TALLOC LOCAL-MESSAGING LOCAL-BINDING LOCAL-IDTREE"
tests="$tests LOCAL-SOCKET"
soon="BASE-CHARSET RAW-OPLOCK RAW-NOTIFY BASE-DELAYWRITE"
@ -57,5 +56,5 @@ for t in $tests; do
fi
start=""
echo Testing $t
testit $VALGRIND bin/smbtorture $unc -U"$username"%"$password" $t
testit $VALGRIND bin/smbtorture $ADDARGS $unc -U"$username"%"$password" $t
done