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

Unified Diff: tools/testing/dart/lib/test_progress.dart

Issue 841193003: cleanup to tools/testing/dart (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: one last bit Created 5 years, 11 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/testing/dart/lib/test_information.dart ('k') | tools/testing/dart/lib/test_utils.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/lib/test_progress.dart
diff --git a/tools/testing/dart/test_progress.dart b/tools/testing/dart/lib/test_progress.dart
similarity index 98%
rename from tools/testing/dart/test_progress.dart
rename to tools/testing/dart/lib/test_progress.dart
index bb31d29f6922a3ecf3b37fb303bb8f945c9f42aa..e5554f63d4c0a443dcc779fa076cdb314d744d0c 100644
--- a/tools/testing/dart/test_progress.dart
+++ b/tools/testing/dart/lib/test_progress.dart
@@ -4,15 +4,18 @@
library test_progress;
-import "dart:async";
-import "dart:io";
-import "dart:io" as io;
-import "dart:convert" show JSON;
-import "path.dart";
-import "status_file_parser.dart";
-import "test_runner.dart";
-import "test_suite.dart";
-import "utils.dart";
+import 'dart:async';
+import 'dart:convert' show JSON;
+import 'dart:io';
+import 'dart:io' as io show exitCode;
+
+import 'command.dart';
+import 'path.dart';
+import 'status_file_parser.dart';
+import 'summary_report.dart';
+import 'test_case.dart';
+import 'test_utils.dart';
+import 'utils.dart';
String _pad(String s, int length) {
StringBuffer buffer = new StringBuffer();
« no previous file with comments | « tools/testing/dart/lib/test_information.dart ('k') | tools/testing/dart/lib/test_utils.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698