mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
40bd0a930b
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org> Autobuild-User(master): Jeremy Allison <jra@samba.org> Autobuild-Date(master): Thu Nov 1 05:06:23 CET 2018 on sn-devel-144
18 lines
298 B
Bash
Executable File
18 lines
298 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ $# -lt 2 ] ; then
|
|
cat <<EOF
|
|
Usage: test_libwbclient_threads.sh DOMAIN USERNAME
|
|
EOF
|
|
exit 1;
|
|
fi
|
|
|
|
DOMAIN="$1"
|
|
USERNAME="$2"
|
|
shift 2
|
|
|
|
incdir=`dirname $0`/../../../testprogs/blackbox
|
|
. $incdir/subunit.sh
|
|
|
|
testit "libwbclient-threads" "$BINDIR/stress-nss-libwbclient" "$DOMAIN/$USERNAME"
|