Commit 38a64aa3 authored by John Budorick's avatar John Budorick Committed by Commit Bot

[android] Pass the host file name when pulling render results.

Bug: 775895
Change-Id: I1c1c59425bea8a8690b8e8706a4e0c7ce96033bf
Reviewed-on: https://chromium-review.googlesource.com/727196Reviewed-by: default avatarYoland Yan <yolandyan@chromium.org>
Commit-Queue: John Budorick <jbudorick@chromium.org>
Cr-Commit-Position: refs/heads/master@{#510096}
parent 4651c279
......@@ -753,7 +753,7 @@ class LocalDeviceInstrumentationTestRun(
'golden_%s' % failure_filename, 'render_tests',
output_manager.Datatype.IMAGE) as golden_image_host_file:
device.PullFile(
golden_image_device_file, golden_image_host_file)
golden_image_device_file, golden_image_host_file.name)
golden_link = golden_image_host_file.Link()
else:
golden_link = ''
......@@ -765,7 +765,7 @@ class LocalDeviceInstrumentationTestRun(
'diff_%s' % failure_filename, 'render_tests',
output_manager.Datatype.IMAGE) as diff_image_host_file:
device.PullFile(
diff_image_device_file, diff_image_host_file)
diff_image_device_file, diff_image_host_file.name)
diff_link = diff_image_host_file.Link()
else:
diff_link = ''
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment