(self, arches, modes, targets, tests, clean)
| 660 | self.testrunner_args = [] |
| 661 | |
| 662 | def populate_configs(self, arches, modes, targets, tests, clean): |
| 663 | for a in arches: |
| 664 | for m in modes: |
| 665 | path = get_path(a, m) |
| 666 | if path not in self.configs: |
| 667 | self.configs[path] = ManagedConfig(a, m, targets, tests, clean, |
| 668 | self.testrunner_args) |
| 669 | else: |
| 670 | self.configs[path].extend(targets, tests) |
| 671 | |
| 672 | def process_global_actions(self): |
| 673 | have_configs = len(self.configs) > 0 |
no test coverage detected