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

Unified Diff: tools/test-runtime.dart

Issue 10938010: Switch from interfaces to abstract classes in dart:io. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address review comments. Add test binaries. 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 | « tools/test.dart ('k') | tools/testing/bin/linux/dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/test-runtime.dart
diff --git a/tools/test-runtime.dart b/tools/test-runtime.dart
index 7038c778d7a4150c2ca6df932c5f6ca37feb80cf..ab95538e954536cee962b03781ea378ee19232e6 100755
--- a/tools/test-runtime.dart
+++ b/tools/test-runtime.dart
@@ -25,14 +25,14 @@
* simpler to add them to test.dart. Existing test suites should be
* moved to here, if possible.
*/
-final TEST_SUITE_DIRECTORIES = const [
- const Path('runtime/tests/vm'),
- const Path('tests/corelib'),
- const Path('tests/isolate'),
- const Path('tests/language'),
- const Path('tests/lib'),
- const Path('tests/standalone'),
- const Path('tests/utils'),
+final TEST_SUITE_DIRECTORIES = [
+ new Path('runtime/tests/vm'),
+ new Path('tests/corelib'),
+ new Path('tests/isolate'),
+ new Path('tests/language'),
+ new Path('tests/lib'),
+ new Path('tests/standalone'),
+ new Path('tests/utils'),
];
main() {
« no previous file with comments | « tools/test.dart ('k') | tools/testing/bin/linux/dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698