blob: a42be94129b726facdda40b795f988b44060fa1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
. basicsmb.fns
test_torture() {
torture_test=$1
password=samba
security=USER
(test_smb_conf_setup && test_smbpasswd $password ) || return 1
echo $srcdir/bin/smbtorture //localhost/test -U$whoami%$password $torture_test
$srcdir/bin/smbtorture //localhost/test -U$whoami%$password $torture_test
status=$?
if [ $status = 0 ]; then
echo "smbtorture test $torture_test worked"
else
echo "smbtorture test $torture_test FAILED (status $status)!"
return 1
fi
return 0
}
|