Revert "s3: vfs: add user_vfs_evg to connection_struct"
[Samba.git] / testprogs / blackbox / test_wintest.sh
blob5019900e651aaa3d2470f0e6face3310c248f70c
1 #!/bin/sh
2 # Blackbox tests for testing against windows machines
3 # Copyright (C) 2008 Jim McDonough
6 testwithconf() {
7 # define test variables, startup/shutdown scripts
8 . $1
9 shift 1
11 if [ -n "$WINTEST_STARTUP" ]; then
12 . $WINTEST_STARTUP;
15 testit "smbtorture" $smbtorture //$SERVER/$SHARE RAW-OPEN -W "$DOMAIN" -U"$USERNAME%$PASSWORD" $@ || failed=`expr $failed + 1`
17 if [ -n "$WINTEST_SHUTDOWN" ]; then
18 . $WINTEST_SHUTDOWN;
23 # main
24 # skip without WINTEST_CONF_DIR
25 if [ -z "$WINTEST_CONF_DIR" ]; then
26 exit 0;
29 unset SOCKET_WRAPPER_DIR
31 failed=0
33 $basedir=`pwd`
35 samba4bindir=`dirname $0`/../../source4/bin
36 smbtorture=$samba4bindir/smbtorture
38 . `dirname $0`/subunit.sh
40 for wintest_conf in $WINTEST_CONF_DIR/*.conf; do
41 testwithconf "$wintest_conf" $@;
42 done
44 exit $failed