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

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

Issue 9325024: Remove "complex matching" from co19. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: rebased Created 8 years, 11 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
« no previous file with comments | « dart/tools/testing/dart/status_file_parser.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 47738b8107418c1c8c0a59951b58894f9d0d600a..a2dfaeb09d81425e10ae7e879ab6bcce546397a4 100644
--- a/dart/tools/testing/dart/test_suite.dart
+++ b/dart/tools/testing/dart/test_suite.dart
@@ -72,8 +72,6 @@ class CCTestSuite implements TestSuite {
}
- bool complexStatusMatching() => false;
-
void testNameHandler(String testName, ignore) {
if (testName == "") {
receiveTestName.close();
@@ -124,8 +122,7 @@ class CCTestSuite implements TestSuite {
}
}
- testExpectations =
- new TestExpectations(complexMatching: complexStatusMatching());
+ testExpectations = new TestExpectations();
for (var statusFilePath in statusFilePaths) {
ReadTestExpectationsInto(testExpectations,
'$dartDir/$statusFilePath',
@@ -175,8 +172,6 @@ class StandardTestSuite implements TestSuite {
bool listRecursively() => false;
- bool complexStatusMatching() => false;
-
String shellPath() => TestUtils.dartShellFileName(configuration);
List<String> additionalOptions(String filename) => [];
@@ -211,8 +206,7 @@ class StandardTestSuite implements TestSuite {
}
// Read test expectations from status files.
- testExpectations =
- new TestExpectations(complexMatching: complexStatusMatching());
+ testExpectations = new TestExpectations();
for (var statusFilePath in statusFilePaths) {
ReadTestExpectationsInto(testExpectations,
'$dartDir/$statusFilePath',
« no previous file with comments | « dart/tools/testing/dart/status_file_parser.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698