1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/testprogs/blackbox/test_wintest.sh
Andreas Schneider c4ba21bc77 testprogs: Fix shellcheck errors in test_wintest.sh
testprogs/blackbox/test_wintest.sh:15:97: error: Double quote array
expansions to avoid re-splitting elements. [SC2068]

testprogs/blackbox/test_wintest.sh:40:31: error: Double quote array
expansions to avoid re-splitting elements. [SC2068]

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Pavel Filipenský <pfilipensky@samba.org>
2022-08-22 20:35:36 +00:00

44 lines
796 B
Bash
Executable File

#!/bin/sh
# Blackbox tests for testing against windows machines
# Copyright (C) 2008 Jim McDonough
testwithconf()
{
# define test variables, startup/shutdown scripts
. $1
shift 1
if [ -n "$WINTEST_STARTUP" ]; then
. $WINTEST_STARTUP
fi
testit "smbtorture" $smbtorture //$SERVER/$SHARE RAW-OPEN -W "$DOMAIN" -U"$USERNAME%$PASSWORD" "$@" || failed=$(expr $failed + 1)
if [ -n "$WINTEST_SHUTDOWN" ]; then
. $WINTEST_SHUTDOWN
fi
}
# main
# skip without WINTEST_CONF_DIR
if [ -z "$WINTEST_CONF_DIR" ]; then
exit 0
fi
unset SOCKET_WRAPPER_DIR
failed=0
basedir=$(pwd)
samba4bindir=$(dirname $0)/../../source4/bin
smbtorture=$samba4bindir/smbtorture
. $(dirname $0)/subunit.sh
for wintest_conf in $WINTEST_CONF_DIR/*.conf; do
testwithconf "$wintest_conf" "$@"
done
exit $failed