Searched refs:target_configuration (Results 1 – 2 of 2) sorted by relevance
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/ |
H A D | resulttooltests.py | 111 target_configuration = {"configuration": { 120 … self.assertTrue(regression.can_be_compared(self.logger, base_configuration, target_configuration), 139 target_configuration = {"configuration": {"TEST_TYPE": "oeselftest", 147 …self.assertFalse(regression.can_be_compared(self.logger, base_configuration, target_configuration), 166 target_configuration = {"configuration": { 181 … self.assertTrue(regression.can_be_compared(self.logger, base_configuration, target_configuration), 200 target_configuration = {"configuration": { 215 …self.assertFalse(regression.can_be_compared(self.logger, base_configuration, target_configuration), 232 target_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 D | regression.py | 130 def metadata_matches(base_configuration, target_configuration): argument 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') 160 target_configuration = target['configuration'] 170 …if target_configuration.get('TEST_TYPE') == 'oeselftest' and 'OESELFTEST_METADATA' not in target_c… 176 target_configuration['OESELFTEST_METADATA'] = guess 180 …ret = target_configuration.get('TEST_TYPE') == 'runtime' and any(result.startswith("ltpresult") fo… 182 return ret and metadata_matches(base_configuration, target_configuration) \ 183 and machine_matches(base_configuration, target_configuration)
|