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

Unified Diff: tools/test.dart

Issue 11575028: Moved the testing scripts to the new import/library/part syntax (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years 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 | « no previous file | tools/testing/dart/browser_test.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 1fa5b0fb4d0fecf2c008d40c74aa6514dc2a27cf..8d7388c0a2e29a4b6d4e39133614263e7575d189 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -22,19 +22,19 @@
*
*/
-#library("test");
+library test;
-#import("dart:io");
-#import("testing/dart/test_runner.dart");
-#import("testing/dart/test_options.dart");
-#import("testing/dart/test_suite.dart");
-#import("testing/dart/test_progress.dart");
-#import("testing/dart/http_server.dart");
+import "dart:io";
+import "testing/dart/test_runner.dart";
+import "testing/dart/test_options.dart";
+import "testing/dart/test_suite.dart";
+import "testing/dart/test_progress.dart";
+import "testing/dart/http_server.dart";
-#import("../compiler/tests/dartc/test_config.dart");
-#import("../runtime/tests/vm/test_config.dart");
-#import("../samples/tests/dartc/test_config.dart");
-#import("../tests/co19/test_config.dart");
+import "../compiler/tests/dartc/test_config.dart";
+import "../runtime/tests/vm/test_config.dart";
+import "../samples/tests/dartc/test_config.dart";
+import "../tests/co19/test_config.dart";
/**
* The directories that contain test suites which follow the conventions
« no previous file with comments | « no previous file | tools/testing/dart/browser_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698