| Index: tools/testing/dart/test_progress.dart
|
| diff --git a/tools/testing/dart/test_progress.dart b/tools/testing/dart/test_progress.dart
|
| index 3de6e2f3e86f45c2c1c2ec26b906f4f4becd49d1..3e25cc0da5b32a3b744bdf1ff08515ed8b63d1ec 100644
|
| --- a/tools/testing/dart/test_progress.dart
|
| +++ b/tools/testing/dart/test_progress.dart
|
| @@ -202,14 +202,9 @@ class ProgressIndicator {
|
| }
|
| if (test is BrowserTestCase) {
|
| // Additional command for rerunning the steps locally after the fact.
|
| - output.add('To retest, run: '
|
| - '${TestUtils.dartTestExecutable.toNativePath()} '
|
| - '${TestUtils.dartDir().toNativePath()}/tools/testing/dart/'
|
| - 'http_server.dart -m ${test.configuration["mode"]} '
|
| - '-a ${test.configuration["arch"]} '
|
| - '-p ${http_server.TestingServerRunner.serverList[0].port} '
|
| - '-c ${http_server.TestingServerRunner.serverList[1].port} '
|
| - '--package-root=${http_server.TestingServerRunner.packageRootDir}');
|
| + var command =
|
| + test.configuration["_servers_"].httpServerCommandline();
|
| + output.add('To retest, run: $command');
|
| }
|
| for (Command c in test.commands) {
|
| output.add('');
|
|
|