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

Unified Diff: tests/corelib/test_config.dart

Issue 8523009: Implement 'compact' progress indicator. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Cleanup Created 9 years, 1 month 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 | « no previous file | tests/standalone/test_config.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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}");
}
}
« no previous file with comments | « no previous file | tests/standalone/test_config.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698