diff options
author | Brian White <mscdex@mscdex.net> | 2016-05-29 03:06:56 -0400 |
---|---|---|
committer | Evan Lucas <evanlucas@me.com> | 2016-06-15 18:12:31 -0500 |
commit | eded11705b30b8e07df3f17af2661ebf0fc8ec6b (patch) | |
tree | f435a43645c4095a92add479a6b31e7621836e26 /test/parallel/test-http-blank-header.js | |
parent | 27ed7fc56c24cac8bc2622a39e8902a888d984e5 (diff) | |
download | node-new-eded11705b30b8e07df3f17af2661ebf0fc8ec6b.tar.gz |
test: use random ports where possible
This helps to prevent issues where a failed test can keep a bound
socket open long enough to cause other tests to fail with EADDRINUSE
because the same port number is used.
PR-URL: https://github.com/nodejs/node/pull/7045
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
Diffstat (limited to 'test/parallel/test-http-blank-header.js')
-rw-r--r-- | test/parallel/test-http-blank-header.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/parallel/test-http-blank-header.js b/test/parallel/test-http-blank-header.js index 45c4c41919..84afa54b88 100644 --- a/test/parallel/test-http-blank-header.js +++ b/test/parallel/test-http-blank-header.js @@ -1,5 +1,5 @@ 'use strict'; -var common = require('../common'); +require('../common'); var assert = require('assert'); var http = require('http'); var net = require('net'); @@ -18,8 +18,8 @@ var server = http.createServer(function(req, res) { }); -server.listen(common.PORT, function() { - var c = net.createConnection(common.PORT); +server.listen(0, function() { + var c = net.createConnection(this.address().port); c.on('connect', function() { c.write('GET /blah HTTP/1.1\r\n' + |