We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5db6d7 commit 188915dCopy full SHA for 188915d
scripts/ci/check_compliance.py
@@ -253,6 +253,10 @@ def parse_kconfig(self):
253
os.environ["KCONFIG_WARN_UNDEF"] = "y"
254
255
try:
256
+ # Note this will both print warnings to stderr _and_ return
257
+ # them: so some warnings might get printed
258
+ # twice. "warn_to_stderr=False" could unfortunately cause
259
+ # some (other) warnings to never be printed.
260
return kconfiglib.Kconfig()
261
except kconfiglib.KconfigError as e:
262
self.add_failure(str(e))
0 commit comments