| Index: Tools/Scripts/webkitpy/layout_tests/models/test_input.py
|
| diff --git a/Tools/Scripts/webkitpy/layout_tests/models/test_input.py b/Tools/Scripts/webkitpy/layout_tests/models/test_input.py
|
| index 1a3030fa80ac15146753e094f3ad868bd2a41199..19f7675700ab3ff610840d0e6fae383895db753f 100644
|
| --- a/Tools/Scripts/webkitpy/layout_tests/models/test_input.py
|
| +++ b/Tools/Scripts/webkitpy/layout_tests/models/test_input.py
|
| @@ -29,9 +29,11 @@
|
|
|
|
|
| class TestInput(object):
|
| +
|
| """Groups information about a test for easy passing of data."""
|
|
|
| - def __init__(self, test_name, timeout=None, requires_lock=None, reference_files=None, should_run_pixel_tests=None, should_add_missing_baselines=True):
|
| + def __init__(self, test_name, timeout=None, requires_lock=None, reference_files=None,
|
| + should_run_pixel_tests=None, should_add_missing_baselines=True):
|
| # TestInput objects are normally constructed by the manager and passed
|
| # to the workers, but these some fields are set lazily in the workers where possible
|
| # because they require us to look at the filesystem and we want to be able to do that in parallel.
|
| @@ -43,4 +45,5 @@ class TestInput(object):
|
| self.should_add_missing_baselines = should_add_missing_baselines
|
|
|
| def __repr__(self):
|
| - return "TestInput('%s', timeout=%s, requires_lock=%s, reference_files=%s, should_run_pixel_tests=%s, should_add_missing_baselines%s)" % (self.test_name, self.timeout, self.requires_lock, self.reference_files, self.should_run_pixel_tests, self.should_add_missing_baselines)
|
| + return "TestInput('%s', timeout=%s, requires_lock=%s, reference_files=%s, should_run_pixel_tests=%s, should_add_missing_baselines%s)" % (
|
| + self.test_name, self.timeout, self.requires_lock, self.reference_files, self.should_run_pixel_tests, self.should_add_missing_baselines)
|
|
|