]> granicus.if.org Git - esp-idf/commitdiff
tools: Kconfig checker ignores test files
authorRoland Dobai <dobai.roland@gmail.com>
Thu, 9 May 2019 13:43:07 +0000 (15:43 +0200)
committerRoland Dobai <dobai.roland@gmail.com>
Tue, 21 May 2019 07:09:01 +0000 (09:09 +0200)
tools/check_kconfigs.py

index b65f68cda58b2c8d4b62e48894aca360d736f547..bc094de03086ea77f5ce540ad44c58ef8bff57ce 100755 (executable)
@@ -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