| Index: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
|
| index a9be6b450600b1a6b7caea95a450c6f9ceb4777e..7dda2713a136d962d26d30dbdd9d047e1dc6927d 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
|
| @@ -511,7 +511,7 @@ def _set_up_derived_options(port, options, args):
|
| # to Port.
|
| filesystem = port.host.filesystem
|
| if not filesystem.isdir(filesystem.join(port.layout_tests_dir(), directory)):
|
| - _log.warning("'%s' was passed to --pixel-test-directories, which doesn't seem to be a directory" % str(directory))
|
| + _log.warning("'%s' was passed to --pixel-test-directories, which doesn't seem to be a directory", str(directory))
|
| else:
|
| verified_dirs.add(directory)
|
|
|
| @@ -568,13 +568,13 @@ def run(port, options, args, logging_stream, stdout):
|
| _log.debug("Dashboard generated.")
|
|
|
| _log.debug("")
|
| - _log.debug("Testing completed, Exit status: %d" % run_details.exit_code)
|
| + _log.debug("Testing completed, Exit status: %d", run_details.exit_code)
|
|
|
| # Temporary process dump for debugging windows timeout issues, see crbug.com/522396.
|
| _log.debug("")
|
| _log.debug("Process dump:")
|
| for process in port.host.executive.process_dump():
|
| - _log.debug("\t%s" % process)
|
| + _log.debug("\t%s", process)
|
|
|
| return run_details
|
|
|
|
|