From f85ef61ce930308ef932490be21932ada0a11d69 Mon Sep 17 00:00:00 2001 From: Sergei Trofimov Date: Thu, 3 Dec 2015 10:53:55 +0000 Subject: [PATCH] lmbench: add the output file as an artifiact --- wlauto/workloads/lmbench/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/wlauto/workloads/lmbench/__init__.py b/wlauto/workloads/lmbench/__init__.py index 4585c386..87a6404d 100644 --- a/wlauto/workloads/lmbench/__init__.py +++ b/wlauto/workloads/lmbench/__init__.py @@ -97,6 +97,7 @@ class lmbench(Workload): with open(outfile, 'w') as wfh: for output in self.output: wfh.write(output) + context.add_artifact('lmbench', 'lmbench.output', 'data') def teardown(self, context): self.device.uninstall_executable(self.test)