1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-09-03 03:42:35 +01:00

wa: Rename Instrumentation to Instruments

To be maintain a consistent naming scheme, rename all instances of
`Instrumentation` to `Instruments`
This commit is contained in:
Marc Bonnici
2018-01-10 14:54:43 +00:00
committed by setrofim
parent 987f4ec4f1
commit 446a1cfbb0
23 changed files with 34 additions and 34 deletions

View File

@@ -20,7 +20,7 @@ from copy import copy
from datetime import datetime
import wa.framework.signal as signal
from wa.framework import instrumentation
from wa.framework import instruments
from wa.framework.configuration.core import Status
from wa.framework.exception import HostError, WorkloadError
from wa.framework.job import Job
@@ -300,10 +300,10 @@ class Executor(object):
output.write_job_specs(config_manager.job_specs)
output.write_state()
self.logger.info('Installing instrumentation')
self.logger.info('Installing instruments')
for instrument in config_manager.get_instruments(self.target_manager.target):
instrumentation.install(instrument, context)
instrumentation.validate()
instruments.install(instrument, context)
instruments.validate()
self.logger.info('Installing output processors')
pm = ProcessorManager()