1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-09-02 19:32:34 +01:00

fw/config: add installed aug configs to run config

Track configuration used for installed augmentations inside RunConfig.
This commit is contained in:
Sergei Trofimov
2018-07-11 11:03:47 +01:00
committed by Marc Bonnici
parent b1a01f777f
commit a062a39f78
4 changed files with 14 additions and 0 deletions

View File

@@ -191,6 +191,9 @@ class ExecutionContext(object):
def write_job_specs(self):
self.run_output.write_job_specs(self.cm.job_specs)
def add_augmentation(self, aug):
self.cm.run_config.add_augmentation(aug)
def get_resource(self, resource, strict=True):
result = self.resolver.get(resource, strict)
if result is None: