| Index: Tools/Scripts/webkitpy/layout_tests/models/test_results.py
|
| diff --git a/Tools/Scripts/webkitpy/layout_tests/models/test_results.py b/Tools/Scripts/webkitpy/layout_tests/models/test_results.py
|
| index 2e313cad6199b7314ef50a66b8d31cce2097cf5e..34d623e7df8dba78aa48c3836e860b74f601ce4a 100644
|
| --- a/Tools/Scripts/webkitpy/layout_tests/models/test_results.py
|
| +++ b/Tools/Scripts/webkitpy/layout_tests/models/test_results.py
|
| @@ -32,13 +32,15 @@ from webkitpy.layout_tests.models import test_failures
|
|
|
|
|
| class TestResult(object):
|
| +
|
| """Data object containing the results of a single test."""
|
|
|
| @staticmethod
|
| def loads(string):
|
| return cPickle.loads(string)
|
|
|
| - def __init__(self, test_name, failures=None, test_run_time=None, has_stderr=False, reftest_type=None, pid=None, references=None, device_failed=False, has_repaint_overlay=False):
|
| + def __init__(self, test_name, failures=None, test_run_time=None, has_stderr=False, reftest_type=None,
|
| + pid=None, references=None, device_failed=False, has_repaint_overlay=False):
|
| self.test_name = test_name
|
| self.failures = failures or []
|
| self.test_run_time = test_run_time or 0 # The time taken to execute the test itself.
|
|
|