This was an oversight, it should have always been written to the json, but was missed in the to_json method.
cc: Dave Airlie <[email protected]> Signed-off-by: Dylan Baker <[email protected]> --- sorry about that Dave, this should correct the problem you're seeing. framework/results.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/framework/results.py b/framework/results.py index d358cca..c5f90e8 100644 --- a/framework/results.py +++ b/framework/results.py @@ -147,13 +147,14 @@ class TestResult(object): """Return the TestResult as a json serializable object.""" obj = { '__type__': 'TestResult', - 'returncode': self.returncode, + 'command': self.command, + 'environment': self.environment, 'err': self.err, 'out': self.out, - 'time': self.time, - 'environment': self.environment, - 'subtests': self.subtests, 'result': self.result, + 'returncode': self.returncode, + 'subtests': self.subtests, + 'time': self.time, } return obj -- 2.5.3 _______________________________________________ Piglit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/piglit
