From 99eb35e09db27e797fbb0c0a0ab385ed683b0f9b Mon Sep 17 00:00:00 2001 From: Jeff Layton Date: Tue, 12 Aug 2014 12:06:25 -0400 Subject: Add SMB/CIFS mounts support The connectathon tests are also useful for testing SMB/CIFS filesystems but when running without unix extensions, some tests are expected to fail. Add a "CIFS mode" that skips tests that are known to fail when running on CIFS filesystems without POSIX extensions. Signed-off-by: Jeff Layton Signed-off-by: Pavel Shilovsky Signed-off-by: Steve Dickson --- basic/runtests | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'basic') diff --git a/basic/runtests b/basic/runtests index 24b0afc..c4f51f1 100755 --- a/basic/runtests +++ b/basic/runtests @@ -37,10 +37,12 @@ echo "" # Setattr, getattr and lookup tests echo "" -./test4 $TESTARG +if [ "$CIFS" != "yes" ]; then + ./test4 $TESTARG # Getattr and lookup tests -# echo "" -# ./test4a $TESTARG +else + ./test4a $TESTARG +fi # Write and read tests echo "" -- cgit