Files
Kmake/test/parallel/test-v8-collect-gc-profile.js

13 lines
197 B
JavaScript
Raw Normal View History

2026-05-26 23:36:42 -07:00
// Flags: --expose-gc
'use strict';
require('../common');
const { testGCProfiler } = require('../common/v8');
testGCProfiler();
for (let i = 0; i < 100; i++) {
new Array(100);
}
global?.gc();