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

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

Issue 846433002: Allow for reporting with the --list option (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 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 | « tools/testing/dart/test_configurations.dart ('k') | tools/testing/dart/test_suite.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/test_runner.dart
===================================================================
--- tools/testing/dart/test_runner.dart (revision 42685)
+++ tools/testing/dart/test_runner.dart (working copy)
@@ -2793,15 +2793,18 @@
print("\nGenerating all matching test cases ....\n");
for (TestCase testCase in testCases) {
+ eventFinishedTestCase(testCase);
print("${testCase.displayName} "
"Expectations: ${testCase.expectedOutcomes.join(', ')} "
"Configuration: '${testCase.configurationString}'");
}
+ eventAllTestsKnown();
});
}
var testCaseEnqueuer;
CommandQueue commandQueue;
+
void setupForRunning(TestCaseEnqueuer testCaseEnqueuer) {
Timer _debugTimer;
// If we haven't seen a single test finishing during a 10 minute period
« no previous file with comments | « tools/testing/dart/test_configurations.dart ('k') | tools/testing/dart/test_suite.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698