| Index: tests/corelib/test_config.dart
|
| diff --git a/tests/corelib/test_config.dart b/tests/corelib/test_config.dart
|
| index 46455f5222820b7d005b6d26ebdfbca14b002551..5680d11bef1900831368bd4abd507eb0aace1bee 100644
|
| --- a/tests/corelib/test_config.dart
|
| +++ b/tests/corelib/test_config.dart
|
| @@ -51,7 +51,6 @@ class CorelibTestSuite {
|
| void processFile(String filename) {
|
| if (!filename.endsWith("Test.dart")) return;
|
|
|
| - Expect.isTrue(filename.contains(directoryPath));
|
| int start = filename.lastIndexOf(pathSeparator);
|
| String testName = filename.substring(start + 1, filename.length - 5);
|
| Set<String> expectations = testExpectationsMap.expectations(testName);
|
| @@ -71,12 +70,5 @@ class CorelibTestSuite {
|
| }
|
|
|
| void completeHandler(TestCase testCase) {
|
| - TestOutput output = testCase.output;
|
| - String expected = "";
|
| - testCase.expectedOutcomes.forEach((value) { expected += value + " "; });
|
| - print("");
|
| - print(testCase.displayName);
|
| - print(" Result:${output.result} Expected:$expected");
|
| - print(" Exit code: ${output.exitCode} Time: ${output.time}");
|
| }
|
| }
|
|
|