summaryrefslogtreecommitdiffstats
path: root/source3/selftest/tests.py
diff options
context:
space:
mode:
authorRalph Boehme <rb@sernet.de>2014-07-08 05:47:02 +0200
committerVolker Lendecke <vl@samba.org>2014-08-18 17:42:50 +0200
commitb15da5f90b2d3a47d1ac92b1de917fce45e5bdaf (patch)
tree0ecdd22975733c1cdb0143c2cc4c01c9d82daef9 /source3/selftest/tests.py
parent4a0ae592f5561179ac3c8170189cb1d54a212ce8 (diff)
downloadsamba-b15da5f90b2d3a47d1ac92b1de917fce45e5bdaf.tar.gz
samba-b15da5f90b2d3a47d1ac92b1de917fce45e5bdaf.tar.xz
samba-b15da5f90b2d3a47d1ac92b1de917fce45e5bdaf.zip
s4:torture: add boilerplate code for vfs_fruit
Signed-off-by: Ralph Boehme <rb@sernet.de> Reviewed-by: Jeremy Allison <jra@samba.org> Reviewed-by: Volker Lendecke <vl@samba.org>
Diffstat (limited to 'source3/selftest/tests.py')
-rwxr-xr-xsource3/selftest/tests.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/source3/selftest/tests.py b/source3/selftest/tests.py
index e9b91d468f..b4e0386379 100755
--- a/source3/selftest/tests.py
+++ b/source3/selftest/tests.py
@@ -289,7 +289,9 @@ nbt = ["nbt.dgram" ]
libsmbclient = ["libsmbclient"]
-tests= base + raw + smb2 + rpc + unix + local + rap + nbt + libsmbclient + idmap
+vfs = ["vfs.fruit"]
+
+tests= base + raw + smb2 + rpc + unix + local + rap + nbt + libsmbclient + idmap + vfs
for t in tests:
if t == "base.delaywrite":
@@ -360,6 +362,9 @@ for t in tests:
# test the dirsort module.
plansmbtorture4testsuite(t, "s3dc", '//$SERVER_IP/tmpsort -U$USERNAME%$PASSWORD')
plansmbtorture4testsuite(t, "plugin_s4_dc", '//$SERVER/tmp -U$USERNAME%$PASSWORD')
+ elif t == "vfs.fruit":
+ plansmbtorture4testsuite(t, "s3dc", '//$SERVER_IP/tmp -U$USERNAME%$PASSWORD --option=torture:share1=vfs_fruit --option=torture:share2=tmp --option=torture:localdir=$SELFTEST_PREFIX/s3dc/share')
+ plansmbtorture4testsuite(t, "plugin_s4_dc", '//$SERVER_IP/tmp -U$USERNAME%$PASSWORD --option=torture:share1=vfs_fruit --option=torture:share2=tmp --option=torture:localdir=$SELFTEST_PREFIX/plugin_s4_dc/share')
else:
plansmbtorture4testsuite(t, "s3dc", '//$SERVER_IP/tmp -U$USERNAME%$PASSWORD')
plansmbtorture4testsuite(t, "plugin_s4_dc", '//$SERVER/tmp -U$USERNAME%$PASSWORD')