From: Roland Dobai Date: Thu, 9 May 2019 13:43:07 +0000 (+0200) Subject: tools: Kconfig checker ignores test files X-Git-Tag: v4.0-beta1~317^2~18 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=67e7cd8a0f660b3362bb0c7623fa0e38b89f98a4;p=esp-idf tools: Kconfig checker ignores test files --- diff --git a/tools/check_kconfigs.py b/tools/check_kconfigs.py index b65f68cda5..bc094de030 100755 --- a/tools/check_kconfigs.py +++ b/tools/check_kconfigs.py @@ -34,6 +34,9 @@ OUTPUT_SUFFIX = '.new' IGNORE_DIRS = ( # Kconfigs from submodules need to be ignored: os.path.join('components', 'mqtt', 'esp-mqtt'), + # Test Kconfigs are also ignored + os.path.join('tools', 'ldgen', 'test', 'data'), + os.path.join('tools', 'kconfig_new', 'test'), ) SPACES_PER_INDENT = 4