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

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

Issue 47743005: test.py: Run the analyzer on all dart files in the sdk. (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
deleted file mode 100644
index 151db20c3fa9a4f5062daeabd289743821cd56bf..0000000000000000000000000000000000000000
--- a/dart/tests/lib/analyzer/test_config.dart
+++ /dev/null
@@ -1,31 +0,0 @@
-// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-library analyze_library_test_config;
-
-import 'dart:io';
-import '../../../tools/testing/dart/test_suite.dart';
-
-class AnalyzeLibraryTestSuite extends DartcCompilationTestSuite {
- final libraries = [ 'async', 'core', 'crypto', 'io', 'isolate', 'json',
- 'math', 'mirrors', 'typed_data', 'uri',
- 'utf' ];
-
- AnalyzeLibraryTestSuite(Map configuration)
- : super(configuration,
- 'analyze_library',
- 'sdk',
- [ 'lib' ],
- ['tests/lib/analyzer/analyze_library.status']);
-
- bool isTestFile(String filename) {
- var sep = Platform.pathSeparator;
- return libraries.any((String lib) {
- return filename.endsWith('lib$sep$lib$sep$lib.dart');
- });
- }
-
- bool get listRecursively => true;
-}
-

Powered by Google App Engine
This is Rietveld 408576698