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

Issue 2361623006: [inspector] added inspector test runner [part 1] (Closed)

Created:
4 years, 3 months ago by kozy
Modified:
4 years, 2 months ago
CC:
v8-reviews_googlegroups.com
Target Ref:
refs/pending/heads/master
Project:
v8
Visibility:
Public.

Description

[inspector] added inspector test runner [part 1] - added a inspector folder, - added related GN and gyp files, - added task handling infrastructure for test runner. BUG=chromium:635948 R=dgozman@chromium.org,alph@chromium.org Committed: https://crrev.com/dc1c71c0dc8a5c4ade4aa291f2ddcd02e90c64b2 Committed: https://crrev.com/80d400641fd829a280ca6ef4f88f55eb41c1c7c0 Cr-Original-Commit-Position: refs/heads/master@{#39866} Cr-Commit-Position: refs/heads/master@{#39918}

Patch Set 1 #

Patch Set 2 : removed inspector-protocol.status #

Total comments: 29

Patch Set 3 : addressed comments #

Total comments: 12

Patch Set 4 : addressed comments #

Patch Set 5 : fixed .gn file for test #

Patch Set 6 : added missing microtask scope #

Patch Set 7 : fixed TaskRunner::GetNext logic #

Patch Set 8 : is_protocol_task -> is_inspector_task #

Patch Set 9 : use String16 in test-runner #

Total comments: 4

Patch Set 10 #

Patch Set 11 : StringView -> String16 in ExecuteStringTask cstor #

Patch Set 12 : renamed target: inspector-protocol -> inspector-protocol-test #

Patch Set 13 : renamed test/inspector-protocol folder into test/inspector #

Patch Set 14 : renamed test/inspector-protocol folder into test/inspector #

Patch Set 15 : added test/inspector folder for cpplint #

Patch Set 16 : added missing headers #

Unified diffs Side-by-side diffs Delta from patch set Stats (+309 lines, -5 lines) Patch
M test/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 2 chunks +5 lines, -0 lines 0 comments Download
A test/inspector/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +36 lines, -0 lines 0 comments Download
A + test/inspector/DEPS View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +3 lines, -4 lines 0 comments Download
A test/inspector/OWNERS View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +2 lines, -0 lines 0 comments Download
A test/inspector/inspector.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +38 lines, -0 lines 0 comments Download
A test/inspector/task-runner.h View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +79 lines, -0 lines 0 comments Download
A test/inspector/task-runner.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +141 lines, -0 lines 0 comments Download
M tools/presubmit.py View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +1 line, -1 line 0 comments Download
M tools/verify_source_deps.py View 1 2 3 4 5 6 7 8 9 10 11 12 4 chunks +4 lines, -0 lines 0 comments Download

Messages

Total messages: 54 (38 generated)
kozy
Dmitry, please take a look! It's first part of https://codereview.chromium.org/2358943002/
4 years, 3 months ago (2016-09-23 02:22:49 UTC) #1
dgozman
https://codereview.chromium.org/2361623006/diff/20001/test/inspector-protocol/DEPS File test/inspector-protocol/DEPS (right): https://codereview.chromium.org/2361623006/diff/20001/test/inspector-protocol/DEPS#newcode6 test/inspector-protocol/DEPS:6: "+src/inspector", Should not include src/inspector. https://codereview.chromium.org/2361623006/diff/20001/test/inspector-protocol/inspector-protocol.gyp File test/inspector-protocol/inspector-protocol.gyp (right): ...
4 years, 3 months ago (2016-09-23 03:09:56 UTC) #2
kozy
Dmitry, please take another look! https://codereview.chromium.org/2361623006/diff/20001/test/inspector-protocol/DEPS File test/inspector-protocol/DEPS (right): https://codereview.chromium.org/2361623006/diff/20001/test/inspector-protocol/DEPS#newcode6 test/inspector-protocol/DEPS:6: "+src/inspector", On 2016/09/23 03:09:55, ...
4 years, 3 months ago (2016-09-23 17:05:20 UTC) #3
dgozman
lgtm https://codereview.chromium.org/2361623006/diff/40001/test/inspector-protocol/task-runner.cc File test/inspector-protocol/task-runner.cc (right): https://codereview.chromium.org/2361623006/diff/40001/test/inspector-protocol/task-runner.cc#newcode112 test/inspector-protocol/task-runner.cc:112: for (;;) { Let's remove this for() https://codereview.chromium.org/2361623006/diff/40001/test/inspector-protocol/task-runner.cc#newcode139 ...
4 years, 3 months ago (2016-09-24 00:56:10 UTC) #4
kozy
All done! https://codereview.chromium.org/2361623006/diff/40001/test/inspector-protocol/task-runner.cc File test/inspector-protocol/task-runner.cc (right): https://codereview.chromium.org/2361623006/diff/40001/test/inspector-protocol/task-runner.cc#newcode112 test/inspector-protocol/task-runner.cc:112: for (;;) { On 2016/09/24 00:56:10, dgozman ...
4 years, 2 months ago (2016-09-26 01:44:09 UTC) #5
kozy
Michael, please take a look! It's first part of 3. Full test runner PoC: https://codereview.chromium.org/2358943002/.
4 years, 2 months ago (2016-09-26 01:45:48 UTC) #7
Michael Achenbach
lgtm with comments. I didn't review c++ files. Please find an owner for review if ...
4 years, 2 months ago (2016-09-28 10:13:46 UTC) #17
kozy
Updated OWNERS file and addressed comments. https://codereview.chromium.org/2361623006/diff/160001/test/inspector-protocol/BUILD.gn File test/inspector-protocol/BUILD.gn (right): https://codereview.chromium.org/2361623006/diff/160001/test/inspector-protocol/BUILD.gn#newcode27 test/inspector-protocol/BUILD.gn:27: # inspector-protocol can't ...
4 years, 2 months ago (2016-09-28 16:38:16 UTC) #18
jochen (gone - plz use gerrit)
lgtm
4 years, 2 months ago (2016-09-29 12:21:20 UTC) #34
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2361623006/280001
4 years, 2 months ago (2016-09-29 13:32:52 UTC) #37
commit-bot: I haz the power
Committed patchset #15 (id:280001)
4 years, 2 months ago (2016-09-29 13:45:53 UTC) #39
commit-bot: I haz the power
Patchset 15 (id:??) landed as https://crrev.com/dc1c71c0dc8a5c4ade4aa291f2ddcd02e90c64b2 Cr-Commit-Position: refs/heads/master@{#39866}
4 years, 2 months ago (2016-09-29 13:46:17 UTC) #41
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2361623006/300001
4 years, 2 months ago (2016-09-30 15:49:59 UTC) #49
commit-bot: I haz the power
Committed patchset #16 (id:300001)
4 years, 2 months ago (2016-09-30 15:52:37 UTC) #51
commit-bot: I haz the power
Patchset 16 (id:??) landed as https://crrev.com/80d400641fd829a280ca6ef4f88f55eb41c1c7c0 Cr-Commit-Position: refs/heads/master@{#39918}
4 years, 2 months ago (2016-09-30 15:52:52 UTC) #53
Michael Achenbach
4 years, 2 months ago (2016-09-30 17:36:42 UTC) #54
Message was sent while issue was closed.
lgtm, thanks

Powered by Google App Engine
This is Rietveld 408576698