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 <[email protected]> --- framework/results.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/results.py b/framework/results.py index 3c2bb2a..1a73c11 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 -- git-series 0.8.10 _______________________________________________ Piglit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/piglit
