| 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();
|
|
|