summaryrefslogtreecommitdiffstats
path: root/remote/shared/webdriver/test/xpcshell/head.js
blob: ddc5573d78e05c8c8b048a0d0ab535619be574d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
async function doGC() {
  // Run GC and CC a few times to make sure that as much as possible is freed.
  const numCycles = 3;
  for (let i = 0; i < numCycles; i++) {
    Cu.forceGC();
    Cu.forceCC();
    await new Promise(resolve => Cu.schedulePreciseShrinkingGC(resolve));
  }

  const MemoryReporter = Cc[
    "@mozilla.org/memory-reporter-manager;1"
  ].getService(Ci.nsIMemoryReporterManager);

  await new Promise(resolve => MemoryReporter.minimizeMemoryUsage(resolve));
}