Chromium Code Reviews| Index: tools/testing/dart/http_server.dart |
| diff --git a/tools/testing/dart/http_server.dart b/tools/testing/dart/http_server.dart |
| index 6966ab3fcf88f0925011bfe37b52070baad597e7..8dcb6198324cb7975a983bb2435f47b6e16664e5 100644 |
| --- a/tools/testing/dart/http_server.dart |
| +++ b/tools/testing/dart/http_server.dart |
| @@ -45,11 +45,11 @@ main() { |
| // TODO: We should probably rename 'package-root' to 'build-directory'. |
| TestingServerRunner._packageRootDir = new Path(args['package-root']); |
| TestingServerRunner._buildDirectory = new Path(args['package-root']); |
| - TestingServerRunner.startHttpServer('127.0.0.1', |
| + TestingServerRunner.startHttpServer('0.0.0.0', |
|
Emily Fortuna
2013/02/08 20:45:17
Can we put this in a separate CL that has Martin o
blois
2013/02/08 21:05:10
D'oh! thanks for catching. needed that for local t
|
| port: int.parse(args['port'])); |
| print('Server listening on port ' |
| '${TestingServerRunner.serverList[0].port}.'); |
| - TestingServerRunner.startHttpServer('127.0.0.1', |
| + TestingServerRunner.startHttpServer('0.0.0.0', |
| allowedPort: TestingServerRunner.serverList[0].port, port: |
| int.parse(args['crossOriginPort'])); |
| print( |