Method
__init__
(self,
arch,
mode,
targets,
tests=[],
clean=False,
testrunner_args=[])
Source from the content-addressed store, hash-verified
| 537 | class ManagedConfig(RawConfig): |
| 538 | |
| 539 | def __init__(self, |
| 540 | arch, |
| 541 | mode, |
| 542 | targets, |
| 543 | tests=[], |
| 544 | clean=False, |
| 545 | testrunner_args=[]): |
| 546 | super().__init__( |
| 547 | get_path(arch, mode), targets, tests, clean, testrunner_args) |
| 548 | self.arch = arch |
| 549 | self.mode = mode |
| 550 | |
| 551 | def get_target_cpu(self): |
| 552 | cpu = "x86" |
Callers
nothing calls this directly
Tested by
no test coverage detected