From: Christof Schmitt Date: Tue, 21 Aug 2018 21:58:01 +0000 (-0700) Subject: test:doc: Skip 'clustering=yes' X-Git-Tag: tdb-1.3.17~1706 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3ecb9ed7b079fc1bf74c311cf5f1684086b36883;p=thirdparty%2Fsamba.git test:doc: Skip 'clustering=yes' As testparm will error out when running clustering=yes as non-root, skip this step to avoid a test failure. BUG: https://bugzilla.samba.org/show_bug.cgi?id=13465 Signed-off-by: Christof Schmitt Reviewed-by: Ralph Boehme --- diff --git a/python/samba/tests/docs.py b/python/samba/tests/docs.py index 6ffdeab9040..5a59ed68588 100644 --- a/python/samba/tests/docs.py +++ b/python/samba/tests/docs.py @@ -159,12 +159,13 @@ class SmbDotConfTests(TestCase): # registry shares appears to need sudo self._set_arbitrary(['bin/testparm'], - exceptions=['client lanman auth', - 'client plaintext auth', - 'registry shares', - 'smb ports', - 'rpc server dynamic port range', - 'name resolve order']) + exceptions = ['client lanman auth', + 'client plaintext auth', + 'registry shares', + 'smb ports', + 'rpc server dynamic port range', + 'name resolve order', + 'clustering']) self._test_empty(['bin/testparm']) def test_default_s4(self):