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

Unified Diff: tests/compiler/dart2js/analyze_api_test.dart

Issue 12045090: Fix analyze_api_test. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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 | « sdk/lib/io/io.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/compiler/dart2js/analyze_api_test.dart
diff --git a/tests/compiler/dart2js/analyze_api_test.dart b/tests/compiler/dart2js/analyze_api_test.dart
index eaf8c4d8efff8cf4939e9e147b172bd32c1748c2..1f4ede2141ec027ad3db1673b7af7980bea93d2e 100644
--- a/tests/compiler/dart2js/analyze_api_test.dart
+++ b/tests/compiler/dart2js/analyze_api_test.dart
@@ -43,11 +43,12 @@ void main() {
});
var provider = new SourceFileProvider();
var handler = new CollectingDiagnosticHandler(provider);
+ handler.verbose = true;
var compiler = new Compiler(
provider.readStringFromUri,
handler.diagnosticHandler,
libraryRoot, libraryRoot,
- <String>['--analyze-only']);
+ <String>['--analyze-only', '--analyze-all']);
compiler.librariesToAnalyzeWhenRun = uriList;
compiler.run(null);
Expect.isFalse(handler.hasWarnings);
« no previous file with comments | « sdk/lib/io/io.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698