summaryrefslogtreecommitdiffstats
path: root/testsuite/build_farm/basicsmb-listfilesauth.test
blob: 4ec72fd2b98ffffcf7b7b6f1865ed23f36a39b34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
. basicsmb.fns

test_listfilesauth() {
	echo $prefix/bin/smbclient //localhost/samba -U$whoami%$password -c 'ls'
	$prefix/bin/smbclient //localhost/samba -U$whoami%$password -c 'ls'
	status=$?
	if [ $status = 0 ]; then
		echo "listed files OK"
	else 
		echo "listing files with smbd failed with status $status"
		return 1
	fi
	return 0
}

password=samba

(test_smb_conf_setup && test_smbpasswd) || exit 1

test_listfilesauth || exit 1