summaryrefslogtreecommitdiffstats
path: root/net/test/test_server.h
diff options
context:
space:
mode:
authorcbentzel@chromium.org <cbentzel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-27 15:11:46 +0000
committercbentzel@chromium.org <cbentzel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-27 15:11:46 +0000
commit286adf5ad68b88df9028ab8239ae55c5b2eab81c (patch)
treecad1420741b139db3f7cf387d15932a466d56712 /net/test/test_server.h
parent476a4c1bd8149fc469fa81821290d53d9c0f228e (diff)
downloadchromium_src-286adf5ad68b88df9028ab8239ae55c5b2eab81c.zip
chromium_src-286adf5ad68b88df9028ab8239ae55c5b2eab81c.tar.gz
chromium_src-286adf5ad68b88df9028ab8239ae55c5b2eab81c.tar.bz2
Revert 64065 - testserver.py listens on ephemeral ports by default.
I'm not convinced that this caused some of the test failures, but I needed to leave unexpectedly and didn't have time to investigate. If --port is specified on the command line, testserver.py will listen on that port, otherwise it will listen on an ephemeral port. If --startup_pipe is specified, the port number is written to the pipe as a 2 byte unsigned int in host order. TestServer by default spawns testserver.py to listen on an ephemeral port and reads the port value from the pipe. If necessary, the port can still be fixed using TestServer::ForcePort, but that will hopefully get deprecated quickly. BUG=56814 TEST=try bots pass Review URL: http://codereview.chromium.org/3549003 TBR=cbentzel@chromium.org Review URL: http://codereview.chromium.org/4165004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64070 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/test/test_server.h')
-rw-r--r--net/test/test_server.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/net/test/test_server.h b/net/test/test_server.h
index 2ee801e..4e68fd9 100644
--- a/net/test/test_server.h
+++ b/net/test/test_server.h
@@ -53,7 +53,7 @@ class TestServer {
bool Stop();
const FilePath& document_root() const { return document_root_; }
- const HostPortPair& host_port_pair() const;
+ const HostPortPair& host_port_pair() const { return host_port_pair_; }
std::string GetScheme() const;
bool GetAddressList(AddressList* address_list) const WARN_UNUSED_RESULT;
@@ -121,9 +121,6 @@ class TestServer {
Type type_;
- // Has the server been started?
- bool started_;
-
DISALLOW_COPY_AND_ASSIGN(TestServer);
};