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

Unified Diff: pkg/analysis_server/test/integration/integration_tests.dart

Issue 1392253002: Restructure the public API for server (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/analysis_server/test/integration/integration_tests.dart
diff --git a/pkg/analysis_server/test/integration/integration_tests.dart b/pkg/analysis_server/test/integration/integration_tests.dart
index 6e7273e2a93ff028c61c3709c296d386c4ccd1fb..a0128b692a239de0a8b54bfd8908e95fbd72b1dd 100644
--- a/pkg/analysis_server/test/integration/integration_tests.dart
+++ b/pkg/analysis_server/test/integration/integration_tests.dart
@@ -630,8 +630,8 @@ class Server {
if (!newTaskModel) {
arguments.add('--${analysisServer.Driver.DISABLE_NEW_TASK_MODEL}');
}
- print('Launching $serverPath');
- print('$dartBinary ${arguments.join(' ')}');
+// print('Launching $serverPath');
Paul Berry 2015/10/08 17:32:24 This is an unrelated change. Let's do it in a sep
Brian Wilkerson 2015/10/09 14:56:44 Done
+// print('$dartBinary ${arguments.join(' ')}');
return Process.start(dartBinary, arguments).then((Process process) {
_process = process;
process.exitCode.then((int code) {

Powered by Google App Engine
This is Rietveld 408576698