diff options
author | Ralph Boehme <slow@samba.org> | 2016-08-25 16:30:24 +0200 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2016-08-30 21:12:26 +0200 |
commit | 946b93d0e3f6f23fa2325d7aaba4dc6f4cc17cb6 (patch) | |
tree | 7ffcad4d52159cb6f84780dc8a1887102b282b59 /source3 | |
parent | 0730cb7e1ce33dbc5fc48a7363204c1220400c68 (diff) | |
download | samba-946b93d0e3f6f23fa2325d7aaba4dc6f4cc17cb6.tar.gz |
s4/torture: tests for vfs_acl_xattr default ACL styles
Bug: https://bugzilla.samba.org/show_bug.cgi?id=12177
Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3')
-rwxr-xr-x | source3/selftest/tests.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/selftest/tests.py b/source3/selftest/tests.py index 7d0dcc16c26..e4c31c6dd9d 100755 --- a/source3/selftest/tests.py +++ b/source3/selftest/tests.py @@ -322,7 +322,7 @@ nbt = ["nbt.dgram" ] libsmbclient = ["libsmbclient"] -vfs = ["vfs.fruit"] +vfs = ["vfs.fruit", "vfs.acl_xattr"] tests= base + raw + smb2 + rpc + unix + local + rap + nbt + libsmbclient + idmap + vfs @@ -418,6 +418,8 @@ for t in tests: plansmbtorture4testsuite(t, "ad_dc", '//$SERVER/tmp -U$USERNAME%$PASSWORD --signing=required') elif t == "smb2.dosmode": plansmbtorture4testsuite(t, "simpleserver", '//$SERVER/dosmode -U$USERNAME%$PASSWORD') + elif t == "vfs.acl_xattr": + plansmbtorture4testsuite(t, "nt4_dc", '//$SERVER_IP/tmp -U$USERNAME%$PASSWORD') else: plansmbtorture4testsuite(t, "nt4_dc", '//$SERVER_IP/tmp -U$USERNAME%$PASSWORD') plansmbtorture4testsuite(t, "ad_dc", '//$SERVER/tmp -U$USERNAME%$PASSWORD') |