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

Issue 890773003: Adding the initial code for Omnibot multi-machine support (Closed)

Created:
5 years, 10 months ago by Mike Meade
Modified:
5 years, 10 months ago
CC:
chromium-reviews
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Adding the initial code for Omnibot multi-machine support. This cl contains the base code plus a "simple" hello world example test. BUG=453679 Committed: https://crrev.com/abebda49c4269e96a48fe435272b3ddb6cccb942 Cr-Commit-Position: refs/heads/master@{#315080}

Patch Set 1 #

Total comments: 28

Patch Set 2 : Addressing initial comments #

Total comments: 79

Patch Set 3 : Fixing comments and reducing excess code. #

Patch Set 4 : Doing a little refactoring and changes. #

Total comments: 4

Patch Set 5 : Fixing some silly subprocess code. #

Total comments: 12

Patch Set 6 : #

Patch Set 7 : Fixed previous comments #

Patch Set 8 : Changed the OTP format to be more descriptive #

Total comments: 8

Patch Set 9 : Fixing final remarks #

Patch Set 10 : #

Patch Set 11 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+738 lines, -12 lines) Patch
A + testing/legion/__init__.py View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -1 line 0 comments Download
A testing/legion/client_controller.py View 1 2 3 4 5 6 7 8 1 chunk +51 lines, -0 lines 0 comments Download
A testing/legion/client_lib.py View 1 2 3 4 5 6 7 8 1 chunk +214 lines, -0 lines 0 comments Download
A testing/legion/client_rpc_methods.py View 1 2 3 4 5 6 7 8 1 chunk +42 lines, -0 lines 0 comments Download
A testing/legion/client_rpc_server.py View 1 2 3 4 5 1 chunk +128 lines, -0 lines 0 comments Download
A testing/legion/common_lib.py View 1 2 3 4 5 1 chunk +40 lines, -0 lines 0 comments Download
A testing/legion/discovery_server.py View 1 2 3 1 chunk +55 lines, -0 lines 0 comments Download
A + testing/legion/examples/hello_world/client_test.isolate View 1 2 3 1 chunk +8 lines, -5 lines 0 comments Download
A testing/legion/examples/hello_world/client_test.py View 1 2 3 1 chunk +27 lines, -0 lines 0 comments Download
A + testing/legion/examples/hello_world/host_test.isolate View 1 2 3 1 chunk +8 lines, -6 lines 0 comments Download
A testing/legion/examples/hello_world/host_test.py View 1 2 3 4 5 6 7 8 1 chunk +74 lines, -0 lines 0 comments Download
A testing/legion/host_controller.py View 1 2 3 4 5 1 chunk +70 lines, -0 lines 0 comments Download
A testing/legion/legion.isolate View 1 2 1 chunk +20 lines, -0 lines 0 comments Download

Messages

Total messages: 19 (5 generated)
Mike Meade
5 years, 10 months ago (2015-01-30 01:38:25 UTC) #2
Marc-Antoine Ruel (Google)
https://codereview.chromium.org/890773003/diff/1/testing/legion/client_controller.py File testing/legion/client_controller.py (right): https://codereview.chromium.org/890773003/diff/1/testing/legion/client_controller.py#newcode5 testing/legion/client_controller.py:5: """The main client_controller code. FYI, we generally keep an ...
5 years, 10 months ago (2015-01-30 18:00:22 UTC) #3
Mike Meade
https://codereview.chromium.org/890773003/diff/1/testing/legion/client_controller.py File testing/legion/client_controller.py (right): https://codereview.chromium.org/890773003/diff/1/testing/legion/client_controller.py#newcode5 testing/legion/client_controller.py:5: """The main client_controller code. On 2015/01/30 18:00:21, Marc-Antoine Ruel ...
5 years, 10 months ago (2015-01-30 21:04:05 UTC) #4
Marc-Antoine Ruel (Google)
https://codereview.chromium.org/890773003/diff/20001/testing/legion/client_controller.py File testing/legion/client_controller.py (right): https://codereview.chromium.org/890773003/diff/20001/testing/legion/client_controller.py#newcode1 testing/legion/client_controller.py:1: #!/usr/bin/env python Saved 19 lines, or 28% of lines, ...
5 years, 10 months ago (2015-01-30 21:58:41 UTC) #5
Mike Meade
Made some overall sweeping changes trying to keep your style recommendations in mind. https://codereview.chromium.org/890773003/diff/20001/testing/legion/client_controller.py File ...
5 years, 10 months ago (2015-02-03 01:18:09 UTC) #6
M-A Ruel
minor things https://codereview.chromium.org/890773003/diff/20001/testing/legion/common_lib.py File testing/legion/common_lib.py (right): https://codereview.chromium.org/890773003/diff/20001/testing/legion/common_lib.py#newcode27 testing/legion/common_lib.py:27: level = logging.DEBUG if args.verbose else logging.INFO ...
5 years, 10 months ago (2015-02-03 01:48:41 UTC) #8
Mike Meade
Also changed the otp format to be more deterministic. https://codereview.chromium.org/890773003/diff/60001/testing/legion/client_lib.py File testing/legion/client_lib.py (right): https://codereview.chromium.org/890773003/diff/60001/testing/legion/client_lib.py#newcode170 testing/legion/client_lib.py:170: ...
5 years, 10 months ago (2015-02-03 17:47:58 UTC) #9
M-A Ruel
lgtm with nits https://codereview.chromium.org/890773003/diff/120001/testing/legion/client_controller.py File testing/legion/client_controller.py (right): https://codereview.chromium.org/890773003/diff/120001/testing/legion/client_controller.py#newcode29 testing/legion/client_controller.py:29: parser.add_argument('--otp') I'd prefer an help string ...
5 years, 10 months ago (2015-02-03 18:50:25 UTC) #10
Mike Meade
https://codereview.chromium.org/890773003/diff/120001/testing/legion/client_controller.py File testing/legion/client_controller.py (right): https://codereview.chromium.org/890773003/diff/120001/testing/legion/client_controller.py#newcode29 testing/legion/client_controller.py:29: parser.add_argument('--otp') On 2015/02/03 18:50:24, M-A Ruel wrote: > I'd ...
5 years, 10 months ago (2015-02-03 19:06:29 UTC) #11
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/890773003/140001
5 years, 10 months ago (2015-02-03 20:49:11 UTC) #13
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/40160)
5 years, 10 months ago (2015-02-03 20:54:42 UTC) #15
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/890773003/180001
5 years, 10 months ago (2015-02-06 18:02:23 UTC) #17
commit-bot: I haz the power
Committed patchset #11 (id:180001)
5 years, 10 months ago (2015-02-06 19:03:26 UTC) #18
commit-bot: I haz the power
5 years, 10 months ago (2015-02-06 19:04:16 UTC) #19
Message was sent while issue was closed.
Patchset 11 (id:??) landed as
https://crrev.com/abebda49c4269e96a48fe435272b3ddb6cccb942
Cr-Commit-Position: refs/heads/master@{#315080}

Powered by Google App Engine
This is Rietveld 408576698