| Index: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/base.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/base.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/base.py
|
| index f6ee2901a55ccc73382ab43e6781e17997802f47..503421ba1140a3f9f293e8168871b88e82144e46 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/base.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/base.py
|
| @@ -1569,6 +1569,10 @@ class Port(object):
|
| return False
|
| return True
|
|
|
| + def should_run_pixel_test_first(self, test_input):
|
| + return any(test_input.test_name.startswith(
|
| + directory) for directory in self._options.image_first_tests)
|
| +
|
| def _convert_path(self, path):
|
| """Handles filename conversion for subprocess command line args."""
|
| # See note above in diff_image() for why we need this.
|
|
|