mirror of
				https://github.com/ARM-software/workload-automation.git
				synced 2025-10-31 07:04:17 +00:00 
			
		
		
		
	trace-cmd: add trace files as artificats
The binary and text trace files were not being added as artifacts in WA output.
This commit is contained in:
		| @@ -205,9 +205,12 @@ class TraceCmdInstrument(Instrument): | |||||||
|     def update_result(self, context):  # NOQA pylint: disable=R0912 |     def update_result(self, context):  # NOQA pylint: disable=R0912 | ||||||
|         outfile = os.path.join(context.output_directory, 'trace.dat') |         outfile = os.path.join(context.output_directory, 'trace.dat') | ||||||
|         self.collector.get_trace(outfile) |         self.collector.get_trace(outfile) | ||||||
|         if self.report and not self.report_on_target: |         context.add_artifact('trace-cmd-bin', outfile, 'data') | ||||||
|             textfile = os.path.join(context.output_directory, 'trace.txt') |         if self.report: | ||||||
|             self.collector.report(outfile, textfile) |             if not self.report_on_target: | ||||||
|  |                 textfile = os.path.join(context.output_directory, 'trace.txt') | ||||||
|  |                 self.collector.report(outfile, textfile) | ||||||
|  |             context.add_artifact('trace-cmd-txt', textfile, 'export') | ||||||
|  |  | ||||||
|     def teardown(self, context): |     def teardown(self, context): | ||||||
|         path = self.target.path.join(self.target.working_directory, OUTPUT_TRACE_FILE) |         path = self.target.path.join(self.target.working_directory, OUTPUT_TRACE_FILE) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user