mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
0b6b2a4dc7
PR-URL: https://github.com/nodejs/node/pull/54355 Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
30 lines
680 B
JavaScript
30 lines
680 B
JavaScript
'use strict';
|
|
|
|
// Flags: --expose-gc
|
|
|
|
// Check that creating a server without listening does not leak resources.
|
|
|
|
const common = require('../common');
|
|
|
|
if (!common.hasCrypto) {
|
|
common.skip('missing crypto');
|
|
}
|
|
|
|
const { onGC } = require('../common/gc');
|
|
const Countdown = require('../common/countdown');
|
|
|
|
const https = require('https');
|
|
const max = 100;
|
|
|
|
// Note that Countdown internally calls common.mustCall, that's why it's not done here.
|
|
const countdown = new Countdown(max, () => {});
|
|
|
|
for (let i = 0; i < max; i++) {
|
|
const server = https.createServer((req, res) => {});
|
|
onGC(server, { ongc: countdown.dec.bind(countdown) });
|
|
}
|
|
|
|
setImmediate(() => {
|
|
global.gc();
|
|
});
|