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

Issue 2157433002: [Findit] Pass changed files info to Fracas, 2 face design. (Closed)

Created:
4 years, 5 months ago by Sharu Jiang
Modified:
4 years, 5 months ago
Reviewers:
chanli, stgao, lijeffrey
CC:
chromium-reviews, infra-reviews+infra_chromium.org, mbarbella (wrong one)
Base URL:
https://chromium.googlesource.com/infra/infra.git@master
Target Ref:
refs/heads/master
Project:
infra
Visibility:
Public.

Description

[Findit] Pass changed files info to Fracas, 2 face design. Message format from Findit to Fracas (updated in red at the bottom of the document https://docs.google.com/document/d/1fDhJ2suyTsCLXukJwNDqtTAx_hK0hjHrOuUFFR_jDtE/edit#heading=h.o9pruw3u1jti) (1)Added changed files info to results (2)changed reason from a str to a list of tuple explaining the scores. Split previous aggregator.py into aggregators.py and aggregated_scorer.py. Add ChangedFilesAggregator. Fix some old tests due to the changes. BUG=624928, 609621 Committed: https://chromium.googlesource.com/infra/infra/+/bf641fc0f205214cc03c192f1e1473465630507f

Patch Set 1 #

Total comments: 6

Patch Set 2 : Address comments. #

Total comments: 4

Patch Set 3 : Fix nits. #

Patch Set 4 : Fix nits. #

Total comments: 6

Patch Set 5 : Fix nits. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+508 lines, -196 lines) Patch
M appengine/findit/crash/callstack.py View 4 chunks +17 lines, -4 lines 0 comments Download
M appengine/findit/crash/findit_for_crash.py View 2 chunks +3 lines, -3 lines 0 comments Download
M appengine/findit/crash/parse_util.py View 1 2 3 4 4 chunks +9 lines, -5 lines 0 comments Download
M appengine/findit/crash/results.py View 1 8 chunks +22 lines, -21 lines 0 comments Download
A appengine/findit/crash/scorers/aggregated_scorer.py View 1 2 3 4 1 chunk +33 lines, -0 lines 0 comments Download
D appengine/findit/crash/scorers/aggregator.py View 1 chunk +0 lines, -31 lines 0 comments Download
A appengine/findit/crash/scorers/aggregators.py View 1 2 3 1 chunk +105 lines, -0 lines 0 comments Download
M appengine/findit/crash/scorers/min_distance.py View 1 2 2 chunks +24 lines, -6 lines 0 comments Download
M appengine/findit/crash/scorers/scorer.py View 2 chunks +8 lines, -3 lines 0 comments Download
A appengine/findit/crash/scorers/test/aggregated_scorer_test.py View 1 chunk +62 lines, -0 lines 0 comments Download
D appengine/findit/crash/scorers/test/aggregator_test.py View 1 chunk +0 lines, -29 lines 0 comments Download
A appengine/findit/crash/scorers/test/aggregators_test.py View 1 chunk +48 lines, -0 lines 0 comments Download
M appengine/findit/crash/scorers/test/min_distance_test.py View 3 chunks +26 lines, -5 lines 0 comments Download
M appengine/findit/crash/scorers/test/top_frame_index_test.py View 1 chunk +6 lines, -2 lines 0 comments Download
M appengine/findit/crash/scorers/top_frame_index.py View 1 chunk +6 lines, -2 lines 0 comments Download
M appengine/findit/crash/test/callstack_test.py View 1 chunk +10 lines, -0 lines 0 comments Download
M appengine/findit/crash/test/crash_test_suite.py View 1 chunk +11 lines, -9 lines 0 comments Download
M appengine/findit/crash/test/findit_for_crash_test.py View 6 chunks +68 lines, -48 lines 0 comments Download
M appengine/findit/crash/test/parse_util_test.py View 1 chunk +7 lines, -7 lines 0 comments Download
M appengine/findit/crash/test/results_test.py View 6 chunks +43 lines, -21 lines 0 comments Download

Dependent Patchsets:

Messages

Total messages: 21 (10 generated)
Sharu Jiang
PTAL :)
4 years, 5 months ago (2016-07-15 18:04:34 UTC) #5
Sharu Jiang
On 2016/07/15 18:04:34, sharu jiang wrote: > PTAL :) Sorry, there are a lot of ...
4 years, 5 months ago (2016-07-15 18:08:43 UTC) #6
stgao
https://codereview.chromium.org/2157433002/diff/20001/appengine/findit/crash/callstack.py File appengine/findit/crash/callstack.py (right): https://codereview.chromium.org/2157433002/diff/20001/appengine/findit/crash/callstack.py#newcode65 appengine/findit/crash/callstack.py:65: if not self.repo_url or not self.dep_path: why dep_path instead ...
4 years, 5 months ago (2016-07-15 23:25:28 UTC) #7
Sharu Jiang
https://codereview.chromium.org/2157433002/diff/20001/appengine/findit/crash/callstack.py File appengine/findit/crash/callstack.py (right): https://codereview.chromium.org/2157433002/diff/20001/appengine/findit/crash/callstack.py#newcode65 appengine/findit/crash/callstack.py:65: if not self.repo_url or not self.dep_path: On 2016/07/15 23:25:28, ...
4 years, 5 months ago (2016-07-18 00:31:58 UTC) #8
lijeffrey
lgtm with nits https://codereview.chromium.org/2157433002/diff/40001/appengine/findit/crash/scorers/aggregated_scorer.py File appengine/findit/crash/scorers/aggregated_scorer.py (right): https://codereview.chromium.org/2157433002/diff/40001/appengine/findit/crash/scorers/aggregated_scorer.py#newcode29 appengine/findit/crash/scorers/aggregated_scorer.py:29: # Only keep the first 2 ...
4 years, 5 months ago (2016-07-19 18:31:30 UTC) #9
Sharu Jiang
https://codereview.chromium.org/2157433002/diff/40001/appengine/findit/crash/scorers/aggregated_scorer.py File appengine/findit/crash/scorers/aggregated_scorer.py (right): https://codereview.chromium.org/2157433002/diff/40001/appengine/findit/crash/scorers/aggregated_scorer.py#newcode29 appengine/findit/crash/scorers/aggregated_scorer.py:29: # Only keep the first 2 digits after decimal ...
4 years, 5 months ago (2016-07-21 03:30:24 UTC) #10
chanli
https://codereview.chromium.org/2157433002/diff/80001/appengine/findit/crash/parse_util.py File appengine/findit/crash/parse_util.py (right): https://codereview.chromium.org/2157433002/diff/80001/appengine/findit/crash/parse_util.py#newcode56 appengine/findit/crash/parse_util.py:56: A tuple - (dep_path, normalized_path), dep_path is the dependency ...
4 years, 5 months ago (2016-07-21 21:10:29 UTC) #14
Sharu Jiang
https://codereview.chromium.org/2157433002/diff/80001/appengine/findit/crash/parse_util.py File appengine/findit/crash/parse_util.py (right): https://codereview.chromium.org/2157433002/diff/80001/appengine/findit/crash/parse_util.py#newcode56 appengine/findit/crash/parse_util.py:56: A tuple - (dep_path, normalized_path), dep_path is the dependency ...
4 years, 5 months ago (2016-07-21 21:19:33 UTC) #15
chanli
On 2016/07/21 21:19:33, sharu jiang wrote: > https://codereview.chromium.org/2157433002/diff/80001/appengine/findit/crash/parse_util.py > File appengine/findit/crash/parse_util.py (right): > > https://codereview.chromium.org/2157433002/diff/80001/appengine/findit/crash/parse_util.py#newcode56 ...
4 years, 5 months ago (2016-07-21 22:35:37 UTC) #16
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/2157433002/100001
4 years, 5 months ago (2016-07-21 22:37:02 UTC) #19
commit-bot: I haz the power
4 years, 5 months ago (2016-07-21 23:14:24 UTC) #21
Message was sent while issue was closed.
Committed patchset #5 (id:100001) as
https://chromium.googlesource.com/infra/infra/+/bf641fc0f205214cc03c192f1e147...

Powered by Google App Engine
This is Rietveld 408576698