Tom Talpey <tom@xxxxxxxxxx> writes: > Is there an updated list of tests expected to pass, and/or > any update for the scripting? Anything else I need to run in > a basic local environment, to test smb3.ko client to ksmbd.ko > and Samba servers on a pair of test machines? For the testing environment, I'd say there is nothing special. Just create two shares in both samba and ksmbd servers and specify them in local.config when running xfstests. We usually name them as 'test' and 'scratch', respectively. For testing SMB3 over samba, you would have something like this in your local.config: [smb3samba] FSTYP=cifs TEST_DEV=//tom.samba/test TEST_DIR=/mnt/test TEST_FS_MOUNT_OPTS='-ousername=tom,password=***,noperm,vers=3.0,mfsymlinks' export MOUNT_OPTIONS='-ousername=tom,password=***,noperm,vers=3.0,mfsymlinks' export SCRATCH_DEV=//tom.samba/scratch export SCRATCH_MNT=/mnt/scratch and then run xfstests ./check -s smb3samba ...