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

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

Issue 2674863004: Add a test that server does not send errors when errors have been disabled (Closed)
Patch Set: Added driver version Created 3 years, 10 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
« no previous file with comments | « pkg/analysis_server/test/integration/analysis/error_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 9a3b90697a7d875486b9911c9634aeb48c3f4046..a1766e202cb7c8abc106e0c89d5643d62a1e3b26 100644
--- a/pkg/analysis_server/test/integration/integration_tests.dart
+++ b/pkg/analysis_server/test/integration/integration_tests.dart
@@ -643,6 +643,7 @@ class Server {
bool debugServer: false,
int diagnosticPort,
bool enableNewAnalysisDriver: false,
+ bool noErrorNotification: false,
bool profileServer: false,
String sdkPath,
int servicesPort,
@@ -701,6 +702,9 @@ class Server {
if (!enableNewAnalysisDriver) {
arguments.add('--disable-new-analysis-driver');
}
+ if (noErrorNotification) {
+ arguments.add('--no-error-notification');
+ }
// print('Launching $serverPath');
// print('$dartBinary ${arguments.join(' ')}');
return Process.start(dartBinary, arguments).then((Process process) {
« no previous file with comments | « pkg/analysis_server/test/integration/analysis/error_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698