| 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;
|
| -}
|
|
|