From: Michael Adam Date: Thu, 23 Jul 2015 21:15:07 +0000 (+0200) Subject: tests:docs: load the full data from the existing param_table. X-Git-Tag: talloc-2.1.4~483 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5efa507e7aeb254b18ae6c2a8bf19cd92b616ba2;p=thirdparty%2Fsamba.git tests:docs: load the full data from the existing param_table. Signed-off-by: Michael Adam Reviewed-by: Jeremy Allison --- diff --git a/python/samba/tests/docs.py b/python/samba/tests/docs.py index cf12b54dd65..fbe783b7fab 100644 --- a/python/samba/tests/docs.py +++ b/python/samba/tests/docs.py @@ -222,6 +222,12 @@ class SmbDotConfTests(TestCase): except: self.fail("Unable to load implemented parameters") + try: + self.table_static = set(get_param_table_full(self.topdir, + "lib/param/param_table_static.c")) + except: + self.fail("Unable to load static parameter table") + try: self.defaults = set(get_documented_tuples(self.topdir)) except: