Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(574)

Issue 689293002: Add option to push files to device using isolate for instrumentation tests. (Closed)

Created:
6 years, 1 month ago by mikecase (-- gone --)
Modified:
6 years ago
CC:
chromium-reviews, darin (slow to review), qsr+mojo_chromium.org, viettrungluu+watch_chromium.org, jam, yzshen+watch_chromium.org, abarth-chromium, Aaron Boodman, darin-cc_chromium.org, yfriedman+watch_chromium.org, klundberg+watch_chromium.org, ben+mojo_chromium.org, android-webview-reviews_chromium.org, jkarlin
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Project:
chromium
Visibility:
Public.

Description

Add option to push files to device using isolate for instrumentation tests. BUG=400499 Committed: https://crrev.com/526d68ea2d7b6e5acf8960e0634bb82c49929c1b Cr-Commit-Position: refs/heads/master@{#304870}

Patch Set 1 #

Total comments: 1

Patch Set 2 : Moved shared functions into new base_setup module. #

Total comments: 22

Patch Set 3 : #

Patch Set 4 : Rebase #

Total comments: 6

Patch Set 5 : Nits #

Patch Set 6 : Removed unused isolate file. #

Total comments: 4

Patch Set 7 : Fixed nits. #

Total comments: 1
Unified diffs Side-by-side diffs Delta from patch set Stats (+201 lines, -131 lines) Patch
A android_webview/android_webview_test_apk.isolate View 1 2 3 4 5 6 1 chunk +14 lines, -0 lines 1 comment Download
A build/android/pylib/base/base_setup.py View 1 2 3 4 5 6 1 chunk +62 lines, -0 lines 0 comments Download
M build/android/pylib/base/base_test_runner.py View 1 2 3 4 5 6 1 chunk +0 lines, -5 lines 0 comments Download
M build/android/pylib/gtest/setup.py View 1 2 3 4 6 chunks +13 lines, -59 lines 0 comments Download
M build/android/pylib/instrumentation/setup.py View 1 2 3 4 2 chunks +71 lines, -1 line 0 comments Download
M build/android/pylib/instrumentation/test_options.py View 1 2 3 1 chunk +2 lines, -1 line 0 comments Download
M build/android/pylib/instrumentation/test_runner.py View 1 2 3 4 5 6 2 chunks +0 lines, -58 lines 0 comments Download
M build/android/pylib/uiautomator/test_runner.py View 1 2 3 4 5 6 2 chunks +2 lines, -5 lines 0 comments Download
M build/android/test_runner.py View 1 2 3 4 5 6 3 chunks +9 lines, -2 lines 0 comments Download
A chrome/chrome_shell_test_apk.isolate View 1 2 3 4 5 6 1 chunk +14 lines, -0 lines 0 comments Download
A content/content_shell_test_apk.isolate View 1 2 3 4 5 6 1 chunk +14 lines, -0 lines 0 comments Download

Messages

Total messages: 22 (4 generated)
mikecase (-- gone --)
https://codereview.chromium.org/689293002/diff/1/build/android/pylib/instrumentation/setup.py File build/android/pylib/instrumentation/setup.py (right): https://codereview.chromium.org/689293002/diff/1/build/android/pylib/instrumentation/setup.py#newcode62 build/android/pylib/instrumentation/setup.py:62: Wondering if you have a good solution to this. ...
6 years, 1 month ago (2014-11-01 06:11:06 UTC) #1
mikecase (-- gone --)
Things changed a lot since I submitted my original CL to get isolate working for ...
6 years, 1 month ago (2014-11-01 07:35:23 UTC) #3
jbudorick
https://codereview.chromium.org/689293002/diff/20001/build/android/pylib/base/base_setup.py File build/android/pylib/base/base_setup.py (right): https://codereview.chromium.org/689293002/diff/20001/build/android/pylib/base/base_setup.py#newcode12 build/android/pylib/base/base_setup.py:12: nit: no blank line here https://codereview.chromium.org/689293002/diff/20001/build/android/pylib/base/base_setup.py#newcode15 build/android/pylib/base/base_setup.py:15: def GenerateDepsDirUsingIsolate(suite_name, ...
6 years, 1 month ago (2014-11-03 15:52:33 UTC) #4
mikecase (-- gone --)
https://codereview.chromium.org/689293002/diff/20001/build/android/pylib/base/base_setup.py File build/android/pylib/base/base_setup.py (right): https://codereview.chromium.org/689293002/diff/20001/build/android/pylib/base/base_setup.py#newcode12 build/android/pylib/base/base_setup.py:12: On 2014/11/03 15:52:32, jbudorick wrote: > nit: no blank ...
6 years, 1 month ago (2014-11-03 19:20:05 UTC) #5
mikecase (-- gone --)
https://codereview.chromium.org/689293002/diff/20001/build/android/pylib/gtest/setup.py File build/android/pylib/gtest/setup.py (right): https://codereview.chromium.org/689293002/diff/20001/build/android/pylib/gtest/setup.py#newcode212 build/android/pylib/gtest/setup.py:212: (lambda d, opts: base_setup.PushDataDeps(d, DeviceDir(d), opts)), On 2014/11/03 15:52:32, ...
6 years, 1 month ago (2014-11-06 00:12:21 UTC) #6
jbudorick
build/android/* lgtm w/ nits https://codereview.chromium.org/689293002/diff/60001/build/android/pylib/gtest/setup.py File build/android/pylib/gtest/setup.py (right): https://codereview.chromium.org/689293002/diff/60001/build/android/pylib/gtest/setup.py#newcode212 build/android/pylib/gtest/setup.py:212: def PushDataDepsToDeviceDir(device): nit: I've been ...
6 years, 1 month ago (2014-11-11 16:31:47 UTC) #7
mikecase (-- gone --)
https://codereview.chromium.org/689293002/diff/60001/build/android/pylib/gtest/setup.py File build/android/pylib/gtest/setup.py (right): https://codereview.chromium.org/689293002/diff/60001/build/android/pylib/gtest/setup.py#newcode212 build/android/pylib/gtest/setup.py:212: def PushDataDepsToDeviceDir(device): On 2014/11/11 16:31:47, jbudorick wrote: > nit: ...
6 years, 1 month ago (2014-11-11 23:23:21 UTC) #8
mikecase (-- gone --)
Adding torne@ for OWNERS review for adding isolate file to android_webview/ Adding csharp@ for OWNERS ...
6 years, 1 month ago (2014-11-12 19:28:07 UTC) #10
mikecase (-- gone --)
Adding torne@ for OWNERS review for adding isolate file to android_webview/ Adding csharp@ for OWNERS ...
6 years, 1 month ago (2014-11-12 19:28:09 UTC) #11
Torne
android_webview LGTM
6 years, 1 month ago (2014-11-12 19:30:17 UTC) #12
Torne
android_webview LGTM
6 years, 1 month ago (2014-11-12 19:30:18 UTC) #13
jbudorick
+maruel for chrome/chrome_shell_test_apk.isolate and content/content_shell_test_apk.isolate
6 years, 1 month ago (2014-11-18 00:17:17 UTC) #15
M-A Ruel
lgtm with nits https://codereview.chromium.org/689293002/diff/100001/android_webview/android_webview_test_apk.isolate File android_webview/android_webview_test_apk.isolate (right): https://codereview.chromium.org/689293002/diff/100001/android_webview/android_webview_test_apk.isolate#newcode1 android_webview/android_webview_test_apk.isolate:1: # Copyright (c) 2013 The Chromium ...
6 years, 1 month ago (2014-11-18 00:54:51 UTC) #16
mikecase (-- gone --)
https://codereview.chromium.org/689293002/diff/100001/android_webview/android_webview_test_apk.isolate File android_webview/android_webview_test_apk.isolate (right): https://codereview.chromium.org/689293002/diff/100001/android_webview/android_webview_test_apk.isolate#newcode1 android_webview/android_webview_test_apk.isolate:1: # Copyright (c) 2013 The Chromium Authors. All rights ...
6 years, 1 month ago (2014-11-18 17:51:41 UTC) #17
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/689293002/120001
6 years, 1 month ago (2014-11-19 19:06:58 UTC) #19
commit-bot: I haz the power
Committed patchset #7 (id:120001)
6 years, 1 month ago (2014-11-19 20:02:14 UTC) #20
commit-bot: I haz the power
Patchset 7 (id:??) landed as https://crrev.com/526d68ea2d7b6e5acf8960e0634bb82c49929c1b Cr-Commit-Position: refs/heads/master@{#304870}
6 years, 1 month ago (2014-11-19 20:03:01 UTC) #21
M-A Ruel
6 years ago (2014-11-24 20:30:22 UTC) #22
Message was sent while issue was closed.
https://codereview.chromium.org/689293002/diff/120001/android_webview/android...
File android_webview/android_webview_test_apk.isolate (right):

https://codereview.chromium.org/689293002/diff/120001/android_webview/android...
android_webview/android_webview_test_apk.isolate:8:
'isolate_dependency_untracked': [
Sorry I missed it but it is not valid anymore, you can 'files' instead on each
.isolate file.

Powered by Google App Engine
This is Rietveld 408576698