summaryrefslogtreecommitdiffstats
path: root/remote/shared/webdriver/test/xpcshell/head.js
blob: 81c0e3950ae6665dd23f3ebfc14f2912b797969f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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));
}