1
0
Fork 0
firefox/js/xpconnect/tests/unit/test_onGarbageCollection-05.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

42 lines
1.1 KiB
JavaScript

// Test that the onGarbageCollection hook reports its gc cycle's number (aka the
// major GC number) and that it is monotonically increasing.
const root = newGlobal();
const dbg = new Debugger();
const wrappedRoot = dbg.addDebuggee(root)
Services.prefs.setBoolPref("security.allow_eval_with_system_principal", true);
registerCleanupFunction(() => {
Services.prefs.clearUserPref("security.allow_eval_with_system_principal");
});
function run_test() {
do_test_pending();
let numFired = 0;
let lastGCCycleNumber = undefined;
(function loop() {
if (numFired == 10) {
dbg.memory.onGarbageCollection = undefined;
dbg.enabled = false;
return void do_test_finished();
}
dbg.memory.onGarbageCollection = data => {
print("onGarbageCollection: " + uneval(data));
if (numFired != 0) {
equal(typeof lastGCCycleNumber, "number");
equal(data.gcCycleNumber - lastGCCycleNumber, 1);
}
numFired++;
lastGCCycleNumber = data.gcCycleNumber;
executeSoon(loop);
};
root.eval("gc(this)");
}());
}