diff --git a/test/sequential/test-gc-http-client-connaborted.js b/test/sequential/test-gc-http-client-connaborted.js index c043c474a65c6b..fa6bf20c176560 100644 --- a/test/sequential/test-gc-http-client-connaborted.js +++ b/test/sequential/test-gc-http-client-connaborted.js @@ -3,13 +3,9 @@ // just like test-gc-http-client.js, // but aborting every connection that comes in. -require('../common'); +const common = require('../common'); const onGC = require('../common/ongc'); -function serverHandler(req, res) { - res.connection.destroy(); -} - const http = require('http'); const todo = 500; let done = 0; @@ -18,33 +14,35 @@ let countGC = 0; console.log(`We should do ${todo} requests`); +function serverHandler(req, res) { + res.connection.destroy(); +} + const server = http.createServer(serverHandler); -server.listen(0, getall); +server.listen(0, common.mustCall(() => { + for (let i = 0; i < 10; i++) + getall(); +})); function getall() { if (count >= todo) return; - (function() { - function cb(res) { - done += 1; - } + const req = http.get({ + hostname: 'localhost', + pathname: '/', + port: server.address().port + }, cb).on('error', cb); - const req = http.get({ - hostname: 'localhost', - pathname: '/', - port: server.address().port - }, cb).on('error', cb); - - count++; - onGC(req, { ongc }); - })(); + count++; + onGC(req, { ongc }); setImmediate(getall); } -for (let i = 0; i < 10; i++) - getall(); +function cb(res) { + done += 1; +} function ongc() { countGC++;