| Index: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android.py
|
| index c62e0bda19f311dc1be7aef38c30320a1aa4957e..9b00de40104c26b86445c1f53fe7d334b0dfcd20 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android.py
|
| @@ -207,7 +207,8 @@ class AndroidCommands(object):
|
| return self.run(['shell', 'ls', '-d', full_path]).strip() == full_path
|
|
|
| def push(self, host_path, device_path, ignore_error=False):
|
| - return self.run(['push', host_path, device_path], ignore_error=ignore_error)
|
| + return self.run(['push', os.path.realpath(host_path), device_path],
|
| + ignore_error=ignore_error)
|
|
|
| def pull(self, device_path, host_path, ignore_error=False):
|
| return self.run(['pull', device_path, host_path], ignore_error=ignore_error)
|
|
|