1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

test:docs: remove unused param_table/get_param_table_full()

No tests use this any more, hence we should not
parse the file anymore either. It is generated
directly from the parametersr.all.xml file.

Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>
This commit is contained in:
Michael Adam 2016-02-02 15:32:26 +01:00 committed by Ralph Boehme
parent 9219756a36
commit 00f4bf32db

View File

@ -59,64 +59,6 @@ def get_documented_parameters(sourcedir):
p.close()
def get_param_table_full(sourcedir, filename="lib/param/param_table_static.c"):
# Reading entries from source code
f = open(os.path.join(sourcedir, filename), "r")
try:
# burn through the preceding lines
while True:
l = f.readline()
if l.startswith("struct parm_struct parm_table"):
break
for l in f.readlines():
if re.match("^\s*\}\;\s*$", l):
# end of the table reached
break
if re.match("^\s*\{\s*$", l):
# start a new entry
_label = ""
_type = ""
_class = ""
_offset = ""
_special = ""
_enum_list = ""
_flags = ""
continue
if re.match("^\s*\},\s*$", l):
# finish the entry
yield _label, _type, _class, _offset, _special, _enum_list, _flags
continue
m = re.match("^\s*\.([^\s]+)\s*=\s*(.*),.*", l)
if not m:
continue
attrib = m.group(1)
value = m.group(2)
if attrib == "label":
_label = value
elif attrib == "type":
_type = value
elif attrib == "p_class":
_class = value
elif attrib == "offset":
_offset = value
elif attrib == "special":
_special = value
elif attrib == "enum_list":
_special = value
elif attrib == "flags":
_flags = value
finally:
f.close()
def get_documented_tuples(sourcedir, omit_no_default=True):
path = os.path.join(sourcedir, "bin", "default", "docs-xml", "smbdotconf")
if not os.path.exists(os.path.join(path, "parameters.all.xml")):
@ -194,12 +136,6 @@ class SmbDotConfTests(TestCase):
except:
self.fail("Unable to load documented parameters")
try:
self.table_gen = set(get_param_table_full(self.topdir,
"bin/default/lib/param/param_table_gen.c"))
except:
self.fail("Unable to load generated parameter table")
try:
self.defaults = set(get_documented_tuples(self.topdir))
except: