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

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

Issue 15675016: More fixes for java2dart and status files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 6 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: tools/testing/dart/test_suite.dart
diff --git a/tools/testing/dart/test_suite.dart b/tools/testing/dart/test_suite.dart
index 532d187ce94af66976e8cf5003a7d7edf9def03e..40cccd2351b3f7da596d64ba0baf9e7d617b3c1b 100644
--- a/tools/testing/dart/test_suite.dart
+++ b/tools/testing/dart/test_suite.dart
@@ -478,7 +478,8 @@ class StandardTestSuite extends TestSuite {
return new StandardTestSuite(configuration,
name, directory,
- ['$directory/$name.status', '$directory/${name}_dart2js.status'],
+ ['$directory/$name.status', '$directory/${name}_dart2js.status',
+ '$directory/${name}_analyzer.status', '$directory/${name}_analyzer2.status'],
isTestFilePredicate: (filename) => filename.endsWith('_test.dart'),
recursive: true);
}
@@ -564,9 +565,11 @@ class StandardTestSuite extends TestSuite {
}
for (var statusFilePath in statusFilePaths) {
- // [forDirectory] adds name_dart2js.status for all tests suites. Use it
+ // [forDirectory] adds name_$compiler.status for all tests suites. Use it
// if it exists, but otherwise skip it and don't fail.
- if (statusFilePath.endsWith('_dart2js.status')) {
+ if (statusFilePath.endsWith('_dart2js.status') ||
+ statusFilePath.endsWith('_analyzer.status') ||
+ statusFilePath.endsWith('_analyzer2.status')) {
var file = new File.fromPath(dartDir.append(statusFilePath));
if (!file.existsSync()) {
filesRead++;
« pkg/analyzer_experimental/bin/analyzer.dart ('K') | « tests/standalone/standalone.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698