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

Unified Diff: dart/tools/testing/dart/test_suite.dart

Issue 78483002: Remove filtering of analyzer warnings/errors by filename (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 1 month 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 | « dart/tools/testing/dart/test_runner.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tools/testing/dart/test_suite.dart
diff --git a/dart/tools/testing/dart/test_suite.dart b/dart/tools/testing/dart/test_suite.dart
index abe3f385e83f880fd67f97ba293ecc4f3d15be56..1d4c4dcf2d954d9ca6de905bcc52788eab602ff0 100644
--- a/dart/tools/testing/dart/test_suite.dart
+++ b/dart/tools/testing/dart/test_suite.dart
@@ -1630,14 +1630,9 @@ class AnalyzeLibraryTestSuite extends DartcCompilationTestSuite {
AnalysisCommand makeAnalysisCommand(TestInformation info,
List<String> arguments) {
- bool fileFilter(String filepath) {
- return filepath == "${info.originTestPath}";
- }
-
return CommandBuilder.instance.getAnalysisCommand(
configuration['compiler'], dartShellFileName, arguments,
- configurationDir, flavor: configuration['compiler'],
- fileFilter: fileFilter);
+ configurationDir, flavor: configuration['compiler']);
}
bool get listRecursively => true;
« no previous file with comments | « dart/tools/testing/dart/test_runner.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698