2017-01-03 21:16:48 +00:00
|
|
|
// Copyright Joyent, Inc. and other Node contributors.
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
// copy of this software and associated documentation files (the
|
|
|
|
// "Software"), to deal in the Software without restriction, including
|
|
|
|
// without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
// distribute, sublicense, and/or sell copies of the Software, and to permit
|
|
|
|
// persons to whom the Software is furnished to do so, subject to the
|
|
|
|
// following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included
|
|
|
|
// in all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
|
|
|
|
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
|
|
|
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
|
|
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
|
|
// USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
2015-05-19 11:00:06 +00:00
|
|
|
'use strict';
|
2021-04-03 02:51:15 +00:00
|
|
|
// Flags: --max_old_space_size=32 --expose_gc
|
2015-01-10 17:06:34 +00:00
|
|
|
|
2021-04-06 06:05:49 +00:00
|
|
|
const common = require('../common');
|
|
|
|
|
2024-04-11 07:29:27 +00:00
|
|
|
if (common.isASan) {
|
|
|
|
common.skip('ASan messes with memory measurements');
|
2021-04-06 06:05:49 +00:00
|
|
|
}
|
|
|
|
|
2016-12-30 23:38:06 +00:00
|
|
|
const assert = require('assert');
|
2017-07-15 00:30:28 +00:00
|
|
|
const vm = require('vm');
|
2011-02-24 23:19:12 +00:00
|
|
|
|
2021-04-03 15:50:52 +00:00
|
|
|
const baselineRss = process.memoryUsage.rss();
|
|
|
|
|
2017-01-08 13:19:00 +00:00
|
|
|
const start = Date.now();
|
2011-02-24 23:19:12 +00:00
|
|
|
|
2017-01-08 13:19:00 +00:00
|
|
|
const interval = setInterval(function() {
|
2011-02-24 23:19:12 +00:00
|
|
|
try {
|
2017-07-15 00:30:28 +00:00
|
|
|
vm.runInNewContext('throw 1;');
|
2018-11-04 15:25:02 +00:00
|
|
|
} catch {
|
2022-02-03 06:35:32 +00:00
|
|
|
// Continue regardless of error.
|
2011-02-24 23:19:12 +00:00
|
|
|
}
|
|
|
|
|
2021-04-03 02:51:15 +00:00
|
|
|
global.gc();
|
2021-01-04 11:09:19 +00:00
|
|
|
const rss = process.memoryUsage.rss();
|
2021-04-03 15:50:52 +00:00
|
|
|
assert.ok(rss < baselineRss + 32 * 1024 * 1024,
|
|
|
|
`memory usage: ${rss} baseline: ${baselineRss}`);
|
2011-02-24 23:19:12 +00:00
|
|
|
|
2020-08-22 22:50:30 +00:00
|
|
|
// Stop after 5 seconds.
|
2011-10-04 22:08:18 +00:00
|
|
|
if (Date.now() - start > 5 * 1000) {
|
2011-02-24 23:19:12 +00:00
|
|
|
clearInterval(interval);
|
2013-09-14 14:29:24 +00:00
|
|
|
|
|
|
|
testContextLeak();
|
2011-02-24 23:19:12 +00:00
|
|
|
}
|
|
|
|
}, 1);
|
|
|
|
|
2013-09-14 14:29:24 +00:00
|
|
|
function testContextLeak() {
|
2020-08-22 22:50:30 +00:00
|
|
|
// TODO: This needs a comment explaining what it's doing. Will it crash the
|
|
|
|
// test if there is a memory leak? Or what?
|
2017-01-08 13:19:00 +00:00
|
|
|
for (let i = 0; i < 1000; i++)
|
2017-07-15 00:30:28 +00:00
|
|
|
vm.createContext({});
|
2013-09-14 14:29:24 +00:00
|
|
|
}
|