| 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',
|
|
|