| 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 8b60c5283424c20cca31d65b5baae6653b0f5780..bd16f4108abdfa50373d9fb99e80bcae411d3c52 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
|
| @@ -357,7 +357,8 @@ class Port(object):
|
| def error_handler(script_error):
|
| local_error.exit_code = script_error.exit_code
|
|
|
| - _log.warn('DISPLAY = %s', self.host.environ.get('DISPLAY', ''))
|
| + if self.host.platform.is_linux():
|
| + _log.debug('DISPLAY = %s', self.host.environ.get('DISPLAY', ''))
|
| output = self._executive.run_command(cmd, error_handler=error_handler)
|
| if local_error.exit_code:
|
| _log.error('System dependencies check failed.')
|
|
|