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

Unified Diff: dart/tests/lib/analyzer/test_config.dart

Issue 46163002: Bugfix in test.dart, adding of specialized test outcomes for analyzer (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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: dart/tests/lib/analyzer/test_config.dart
diff --git a/dart/tests/lib/analyzer/test_config.dart b/dart/tests/lib/analyzer/test_config.dart
index d2dcd527a4f688449b951c0923c13d8d519cbf59..151db20c3fa9a4f5062daeabd289743821cd56bf 100644
--- a/dart/tests/lib/analyzer/test_config.dart
+++ b/dart/tests/lib/analyzer/test_config.dart
@@ -17,8 +17,7 @@ class AnalyzeLibraryTestSuite extends DartcCompilationTestSuite {
'analyze_library',
'sdk',
[ 'lib' ],
- ['tests/lib/analyzer/analyze_library.status'],
- allStaticClean: true);
+ ['tests/lib/analyzer/analyze_library.status']);
bool isTestFile(String filename) {
var sep = Platform.pathSeparator;
@@ -30,19 +29,3 @@ class AnalyzeLibraryTestSuite extends DartcCompilationTestSuite {
bool get listRecursively => true;
}
-
-class AnalyzeTestsTestSuite extends DartcCompilationTestSuite {
- AnalyzeTestsTestSuite(Map configuration)
- : super(configuration,
- 'analyze_tests',
- 'tests',
- [ 'standalone' ],
- ['tests/lib/analyzer/analyze_tests.status'],
- allStaticClean: true);
-
- bool isTestFile(String filename) {
- return filename.endsWith('_test.dart');
- }
-
- bool get listRecursively => true;
-}

Powered by Google App Engine
This is Rietveld 408576698