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

Unified Diff: tools/test.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 | « tests/standalone/io/http_headers_test.dart ('k') | tools/test-runtime.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/test.dart
diff --git a/tools/test.dart b/tools/test.dart
index 5cf071939354adcfc20e186032d30bd3464944be..7786037b9f0e210cc7053b30c4ddb997078f6ada 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -42,27 +42,27 @@
* simpler to add them to test.dart. Existing test suites should be
* moved to here, if possible.
*/
-final TEST_SUITE_DIRECTORIES = const [
- const Path('pkg'),
- const Path('runtime/tests/vm'),
- const Path('samples/tests/samples'),
- const Path('tests/benchmark_smoke'),
- const Path('tests/compiler/dart2js'),
- const Path('tests/compiler/dart2js_extra'),
- const Path('tests/compiler/dart2js_foreign'),
- const Path('tests/compiler/dart2js_native'),
- const Path('tests/corelib'),
- const Path('tests/dom'),
- const Path('tests/html'),
- const Path('tests/isolate'),
- const Path('tests/json'),
- const Path('tests/language'),
- const Path('tests/lib'),
- const Path('tests/standalone'),
- const Path('tests/utils'),
- const Path('utils/tests/css'),
- const Path('utils/tests/peg'),
- const Path('utils/tests/pub'),
+final TEST_SUITE_DIRECTORIES = [
+ new Path('pkg'),
+ new Path('runtime/tests/vm'),
+ new Path('samples/tests/samples'),
+ new Path('tests/benchmark_smoke'),
+ new Path('tests/compiler/dart2js'),
+ new Path('tests/compiler/dart2js_extra'),
+ new Path('tests/compiler/dart2js_foreign'),
+ new Path('tests/compiler/dart2js_native'),
+ new Path('tests/corelib'),
+ new Path('tests/dom'),
+ new Path('tests/html'),
+ new Path('tests/isolate'),
+ new Path('tests/json'),
+ new Path('tests/language'),
+ new Path('tests/lib'),
+ new Path('tests/standalone'),
+ new Path('tests/utils'),
+ new Path('utils/tests/css'),
+ new Path('utils/tests/peg'),
+ new Path('utils/tests/pub'),
];
main() {
« no previous file with comments | « tests/standalone/io/http_headers_test.dart ('k') | tools/test-runtime.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698