# example loadfile for SMB
# create a file and write 4kb to it at random offsets
# make sure the offset is between 0 and 0x10000000 and that it is aligned to 4kb
# boundaries
#
MKDIR "/client1" *
OPEN "/client1/test.txt" 0x0c SUCCESS
REPEAT 10
WRITE "/client1/test.txt" *%0x10000000/4096 4096 SUCCESS
CLOSE "/client1/test.txt" SUCCESS
