| Index: tools/testing/dart/test_runner.dart
|
| diff --git a/tools/testing/dart/test_runner.dart b/tools/testing/dart/test_runner.dart
|
| index 6ebd60c00c8ebb069787a9cb34358450996aa7b2..4d879e49f72695533433092b3ceeaab18df63037 100644
|
| --- a/tools/testing/dart/test_runner.dart
|
| +++ b/tools/testing/dart/test_runner.dart
|
| @@ -1600,14 +1600,9 @@ class ProcessQueue {
|
| int i = 1;
|
| if (test is BrowserTestCase) {
|
| // Additional command for rerunning the steps locally after the fact.
|
| - print('$i. ${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();
|
| + print('$i. $command');
|
| i++;
|
| }
|
| for (Command command in test.commands) {
|
|
|