mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-01-19 04:21:17 +00:00
8d3f9362fb
Commit 2276ae0c5b54 ("Fixing config processing for extensions with non-identifier names.") broke customizing the trace-cmd instrumentation from the agenda. With an agenda like: config: instrumentation: [trace-cmd, delay] trace_events: ['thermal*'] trace_buffer_size: 28000 trace_events and trace_buffer_size get added to the RunConfiguration's _raw_config under the trace-cmd name, but then when it's looked up in _finalize_config_list(), the dictionary is actually looked up using identifier(extname), i.e. 'trace_cmd'. Fix this by adding the user's configuration using identifier(name) as well.