summaryrefslogtreecommitdiff
path: root/testsuite.py
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2018-01-30 10:58:24 +0100
committerUlf Magnusson <ulfalizer@gmail.com>2018-01-30 10:58:24 +0100
commitef627e02c8c3f5423e25e2a53eb61889d610ca60 (patch)
treebc7b49452acdc924b117c77ffb0454c6b1e80857 /testsuite.py
parent0eadd61c05c523a150721f9646e4d3f7cff58e5c (diff)
Fix warnings printed for test suite
Just to have clean output. The warnings themselves are accurate.
Diffstat (limited to 'testsuite.py')
-rw-r--r--testsuite.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/testsuite.py b/testsuite.py
index 083568d..adcadfd 100644
--- a/testsuite.py
+++ b/testsuite.py
@@ -793,7 +793,8 @@ g
os.environ["EXPANDED_FROM_ENV"] = "tests"
os.environ["srctree"] = "Kconfiglib/"
- c = Kconfig("tests/Klocation")
+ # Has symbol with empty help text, so disable warnings
+ c = Kconfig("tests/Klocation", warn=False)
os.environ.pop("EXPANDED_FROM_ENV", None)
os.environ.pop("srctree", None)