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

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

Issue 9702020: Update stable test binaries. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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/bin/windows/dart.exe ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/test_runner.dart
diff --git a/tools/testing/dart/test_runner.dart b/tools/testing/dart/test_runner.dart
index 71d1335eb7083c2de912b67017f9f5050c816f32..4fed4202d98457a0ff1c2869dbb18953c597bc4b 100644
--- a/tools/testing/dart/test_runner.dart
+++ b/tools/testing/dart/test_runner.dart
@@ -186,13 +186,13 @@ interface TestOutput default TestOutputImpl {
bool get hasTimedOut();
bool get didFail();
-
+
Duration get time();
-
+
List<String> get stdout();
List<String> get stderr();
-
+
List<String> get diagnostics();
}
@@ -840,10 +840,13 @@ class ProcessQueue {
Date startTime,
bool printTiming,
Function this._enqueueMoreWork,
- [bool this._verbose = false,
- bool this._listTests = false,
- bool this._keepGeneratedTests = false])
- : _tests = new Queue<TestCase>(),
+ [bool verbose = false,
+ bool listTests = false,
+ bool keepGeneratedTests = false])
+ : _verbose = verbose,
+ _listTests = listTests,
+ _keepGeneratedTests = keepGeneratedTests,
+ _tests = new Queue<TestCase>(),
_progress = new ProgressIndicator.fromName(progress,
startTime,
printTiming),
« no previous file with comments | « tools/testing/bin/windows/dart.exe ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698