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

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

Issue 10973009: Create a wrapper around test.dart for running co19 tests. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 3 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 | « dart/tools/testing/dart/co19_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tools/testing/dart/test_runner.dart
diff --git a/dart/tools/testing/dart/test_runner.dart b/dart/tools/testing/dart/test_runner.dart
index 3e36c0b71407a5641b3ba6626654a132cac7bf56..3117567b8ec847d2e6eb0653e7513c7f34e6974f 100644
--- a/dart/tools/testing/dart/test_runner.dart
+++ b/dart/tools/testing/dart/test_runner.dart
@@ -144,7 +144,8 @@ class TestCase {
final runtime = configuration['runtime'];
final mode = configuration['mode'];
final arch = configuration['arch'];
- return "$compiler-$runtime ${mode}_$arch";
+ final checked = configuration['checked'] ? '-checked' : '';
+ return "$compiler-$runtime$checked ${mode}_$arch";
}
List<String> get batchRunnerArguments => ['-batch'];
« no previous file with comments | « dart/tools/testing/dart/co19_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698