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

Unified Diff: tools/testing/dart/test_suite.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 | « tools/testing/dart/test_runner.dart ('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_suite.dart
diff --git a/tools/testing/dart/test_suite.dart b/tools/testing/dart/test_suite.dart
index 356d22c42765564cad905533679edf4347ec706c..64aa4020b569c451f2405e642008485febe9b5e7 100644
--- a/tools/testing/dart/test_suite.dart
+++ b/tools/testing/dart/test_suite.dart
@@ -12,17 +12,17 @@
* - Preparing tests, including copying files and frameworks to temporary
* directories, and computing the command line and arguments to be run.
*/
-#library("test_suite");
+library test_suite;
-#import("dart:io");
-#import("dart:isolate");
-#import("status_file_parser.dart");
-#import("test_runner.dart");
-#import("multitest.dart");
-#import("drt_updater.dart");
-#import("dart:uri");
+import "dart:io";
+import "dart:isolate";
+import "status_file_parser.dart";
+import "test_runner.dart";
+import "multitest.dart";
+import "drt_updater.dart";
+import "dart:uri";
-#source("browser_test.dart");
+part "browser_test.dart";
// TODO(rnystrom): Add to dart:core?
« no previous file with comments | « tools/testing/dart/test_runner.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698