summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2016-11-08 11:48:29 -0800
committerDylan Baker <dylan@pnwbakers.com>2016-11-10 10:49:09 -0800
commit4e91621fc4c1446391fb8987aed1fcd56030d793 (patch)
tree887644d7c78700f8996775818d5977daa18a25af
parentd9bbdb60901fdc54c1bd06409f8f9fc7b6f894f5 (diff)
framework/result: TestrunResult.options should be a dict
This changes the default type from None to a dict, which is what it is when setup in framework/programs/run. Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
-rw-r--r--framework/results.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/results.py b/framework/results.py
index 3c2bb2a39..1a73c11b0 100644
--- a/framework/results.py
+++ b/framework/results.py
@@ -295,7 +295,7 @@ class TestrunResult(object):
def __init__(self):
self.name = None
self.uname = None
- self.options = None
+ self.options = {}
self.glxinfo = None
self.wglinfo = None
self.clinfo = None