summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2018-06-08 11:22:53 -0700
committerDylan Baker <dylan@pnwbakers.com>2018-07-24 11:42:34 -0700
commit9d4588cec7954d0abd879ab2ee6346e21b5fe0b6 (patch)
treea41b5f95d4f2214cb18a7e94dc7ea93200831c0d /framework
parent840e6e98326daa0ad43c4e2bf1859b086627bc9a (diff)
summary/html: generalize info output
So that random keys show up somewhat nicely.
Diffstat (limited to 'framework')
-rw-r--r--framework/summary/html_.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/framework/summary/html_.py b/framework/summary/html_.py
index 945230bc6..f0cc6b639 100644
--- a/framework/summary/html_.py
+++ b/framework/summary/html_.py
@@ -100,10 +100,7 @@ def _make_testrun_info(results, destination, exclude=None):
totals=each.totals['root'],
time=each.time_elapsed.delta,
options=each.options,
- uname=each.info['system'].get('uname'),
- glxinfo=each.info['system'].get('glxinfo'),
- clinfo=each.info['system'].get('clinfo'),
- lspci=each.info['system'].get('lspci')))
+ info=each.info))
# Then build the individual test results
for key, value in six.iteritems(each.tests):