Skip to content

Commit 7724d38

Browse files
committed
test: fix flaky test-vm-memleak
Force garbage collection so that the memory leak is more easily differentiated from ordinary not-garbage-collected memory. Refs: #34289
1 parent b0d5e03 commit 7724d38

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/pummel/test-vm-memleak.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
// USE OR OTHER DEALINGS IN THE SOFTWARE.
2121

2222
'use strict';
23-
// Flags: --max_old_space_size=32
23+
// Flags: --max_old_space_size=32 --expose_gc
2424

2525
require('../common');
2626
const assert = require('assert');
@@ -34,6 +34,7 @@ const interval = setInterval(function() {
3434
} catch {
3535
}
3636

37+
global.gc();
3738
const rss = process.memoryUsage.rss();
3839
assert.ok(rss < 64 * 1024 * 1024,
3940
`memory usage: ${rss} (${Math.round(rss / (1024 * 1024))} MB)`);

0 commit comments

Comments
 (0)