Home
last modified time | relevance | path

Searched refs:base_configuration (Results 1 – 2 of 2) sorted by relevance

/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/
H A Dresulttooltests.py102 base_configuration = {"configuration": {
120 … self.assertTrue(regression.can_be_compared(self.logger, base_configuration, target_configuration),
124 base_configuration = {"configuration": {
147 …self.assertFalse(regression.can_be_compared(self.logger, base_configuration, target_configuration),
151 base_configuration = {"configuration": {
181 … self.assertTrue(regression.can_be_compared(self.logger, base_configuration, target_configuration),
185 base_configuration = {"configuration": {
215 …self.assertFalse(regression.can_be_compared(self.logger, base_configuration, target_configuration),
219 base_configuration = {"configuration": {"TEST_TYPE": "runtime",
245 … self.assertTrue(regression.can_be_compared(self.logger, base_configuration, target_configuration),
[all …]
/openbmc/openbmc/poky/scripts/lib/resulttool/
H A Dregression.py130 def metadata_matches(base_configuration, target_configuration): argument
137 test_type = base_configuration.get('TEST_TYPE')
142 if target_configuration.get(metadata_key) != base_configuration.get(metadata_key):
148 def machine_matches(base_configuration, target_configuration): argument
149 return base_configuration.get('MACHINE') == target_configuration.get('MACHINE')
159 base_configuration = base['configuration']
163 …if base_configuration.get('TEST_TYPE') == 'oeselftest' and 'OESELFTEST_METADATA' not in base_confi…
169 base_configuration['OESELFTEST_METADATA'] = guess
179 …if base_configuration.get('TEST_TYPE') == 'runtime' and any(result.startswith("ltpresult") for res…
182 return ret and metadata_matches(base_configuration, target_configuration) \
[all …]