Преглед изворни кода

tools: Kconfig checker ignores test files

Roland Dobai пре 6 година
родитељ
комит
67e7cd8a0f
1 измењених фајлова са 3 додато и 0 уклоњено
  1. 3 0
      tools/check_kconfigs.py

+ 3 - 0
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