From: Björn Jacke Date: Wed, 20 Dec 2017 20:35:54 +0000 (+0100) Subject: tests:docs: remove explicit exceptions for parametric options X-Git-Url: http://git.samba.org/?p=metze%2Fsamba%2Fwip.git;a=commitdiff_plain;h=e3cc2af011640eb1077014f820c6fb60da204d92 tests:docs: remove explicit exceptions for parametric options we don't need to list them all as special cases because we exclude parametric options generally now from the default value test. Signed-off-by: Bjoern Jacke Reviewed-by: Andrew Bartlett Reviewed-by: Garming Sam --- diff --git a/python/samba/tests/docs.py b/python/samba/tests/docs.py index 0c5b50e314cb..1462600b3b1f 100644 --- a/python/samba/tests/docs.py +++ b/python/samba/tests/docs.py @@ -99,15 +99,13 @@ def get_documented_tuples(sourcedir, omit_no_default=True): class SmbDotConfTests(TestCase): # defines the cases where the defaults may differ from the documentation - special_cases = set(['log level', 'path', 'ldapsam:trusted', 'spoolss: architecture', - 'share:fake_fscaps', 'ldapsam:editposix', 'rpc_daemon:DAEMON', - 'rpc_server:SERVER', 'panic action', 'homedir map', 'NIS homedir', + special_cases = set(['log level', 'path', + 'panic action', 'homedir map', 'NIS homedir', 'server string', 'netbios name', 'socket options', 'use mmap', 'ctdbd socket', 'printing', 'printcap name', 'queueresume command', 'queuepause command','lpresume command', 'lppause command', 'lprm command', 'lpq command', 'print command', 'template homedir', - 'spoolss: os_major', 'spoolss: os_minor', 'spoolss: os_build', - 'max open files', 'fss: prune stale', 'fss: sequence timeout', + 'max open files', 'include system krb5 conf', 'rpc server dynamic port range', 'mit kdc command'])