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

Issue 303233007: First cut at server timing tests (Closed)

Created:
6 years, 6 months ago by Brian Wilkerson
Modified:
6 years, 6 months ago
Reviewers:
jwren, Paul Berry, scheglov
CC:
reviews_dartlang.org
Visibility:
Public.

Description

Patch Set 1 #

Total comments: 4

Patch Set 2 : Fixed some bugs, added tests #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1005 lines, -47 lines) Patch
M editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/AnalysisServerListener.java View 1 1 chunk +2 lines, -3 lines 0 comments Download
M editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/AnalysisStatus.java View 1 1 chunk +32 lines, -7 lines 0 comments Download
A editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/ServerStatus.java View 1 1 chunk +52 lines, -0 lines 0 comments Download
M editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/internal/local/BroadcastAnalysisServerListener.java View 1 2 chunks +3 lines, -3 lines 0 comments Download
M editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/internal/remote/ByteResponseStream.java View 1 1 chunk +6 lines, -1 line 0 comments Download
M editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/internal/remote/RemoteAnalysisServerImpl.java View 1 6 chunks +29 lines, -11 lines 0 comments Download
M editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/TestAll.java View 1 chunk +1 line, -2 lines 0 comments Download
A + editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/internal/TestAll.java View 2 chunks +1 line, -3 lines 0 comments Download
M editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/internal/shared/TestAnalysisServerListener.java View 1 2 chunks +2 lines, -2 lines 0 comments Download
A editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/timing/AnalyzeEngineInContext.java View 1 1 chunk +122 lines, -0 lines 0 comments Download
A editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/timing/AnalyzeEngineInServer.java View 1 1 chunk +223 lines, -0 lines 0 comments Download
A editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/timing/ServerTimingTests.java View 1 chunk +57 lines, -0 lines 0 comments Download
A editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/timing/TestGroup.java View 1 1 chunk +85 lines, -0 lines 0 comments Download
A editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/timing/TimingResult.java View 1 1 chunk +126 lines, -0 lines 0 comments Download
A editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/timing/TimingTest.java View 1 1 chunk +218 lines, -0 lines 0 comments Download
M editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/analysis/model/WorkspaceAnalysisServerListener.java View 1 2 chunks +2 lines, -2 lines 0 comments Download
M pkg/analysis_server/lib/src/analysis_server.dart View 1 3 chunks +17 lines, -12 lines 0 comments Download
M pkg/analysis_server/test/analysis_server_test.dart View 1 3 chunks +27 lines, -1 line 0 comments Download

Messages

Total messages: 8 (0 generated)
Brian Wilkerson
6 years, 6 months ago (2014-05-30 15:34:42 UTC) #1
Paul Berry
lgtm https://codereview.chromium.org/303233007/diff/1/editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/timing/AnalyzeEngineInContext.java File editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/timing/AnalyzeEngineInContext.java (right): https://codereview.chromium.org/303233007/diff/1/editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/timing/AnalyzeEngineInContext.java#newcode147 editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/timing/AnalyzeEngineInContext.java:147: if (!name.equals("packages")) { As currently implemented, the analysis ...
6 years, 6 months ago (2014-05-30 15:47:20 UTC) #2
scheglov
lgtm
6 years, 6 months ago (2014-05-30 16:01:53 UTC) #3
jwren
LGTM https://codereview.chromium.org/303233007/diff/1/editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/timing/AnalyzeEngineInServer.java File editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/timing/AnalyzeEngineInServer.java (right): https://codereview.chromium.org/303233007/diff/1/editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/timing/AnalyzeEngineInServer.java#newcode120 editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/timing/AnalyzeEngineInServer.java:120: ((RemoteAnalysisServerImpl) server).test_waitForWorkerComplete(); Will this will wait until the ...
6 years, 6 months ago (2014-05-30 16:04:34 UTC) #4
Brian Wilkerson
https://codereview.chromium.org/303233007/diff/1/editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/timing/AnalyzeEngineInContext.java File editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/timing/AnalyzeEngineInContext.java (right): https://codereview.chromium.org/303233007/diff/1/editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/timing/AnalyzeEngineInContext.java#newcode147 editor/tools/plugins/com.google.dart.server_test/src/com/google/dart/server/timing/AnalyzeEngineInContext.java:147: if (!name.equals("packages")) { As far as I can see, ...
6 years, 6 months ago (2014-05-30 16:52:52 UTC) #5
Brian Wilkerson
PTAL
6 years, 6 months ago (2014-05-31 18:24:21 UTC) #6
scheglov
LGTM
6 years, 6 months ago (2014-06-02 14:29:40 UTC) #7
Brian Wilkerson
6 years, 6 months ago (2014-06-02 14:39:44 UTC) #8
Message was sent while issue was closed.
Committed patchset #2 manually as r36874 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698