Lines Matching defs:all_config
176 def _allconfig(self, mode, all_config, extra_env={}):
177 if all_config:
178 all_config_path = os.path.join(self._test_dir, all_config)
183 def allyesconfig(self, all_config=None):
186 all_config: fragment config file for KCONFIG_ALLCONFIG (optional)
189 return self._allconfig('allyes', all_config)
191 def allmodconfig(self, all_config=None):
194 all_config: fragment config file for KCONFIG_ALLCONFIG (optional)
197 return self._allconfig('allmod', all_config)
199 def allnoconfig(self, all_config=None):
202 all_config: fragment config file for KCONFIG_ALLCONFIG (optional)
205 return self._allconfig('allno', all_config)
207 def alldefconfig(self, all_config=None):
210 all_config: fragment config file for KCONFIG_ALLCONFIG (optional)
213 return self._allconfig('alldef', all_config)
215 def randconfig(self, all_config=None, seed=None):
218 all_config: fragment config file for KCONFIG_ALLCONFIG (optional)
227 return self._allconfig('rand', all_config, extra_env=extra_env)