blob: d983e2cd115811be88eae8c4e84f2c9158ad29a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
// Test that the onGarbageCollection hook is not reentrant.
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();
const root = newGlobal();
const dbg = new Debugger();
const wrappedRoot = dbg.addDebuggee(root)
let fired = true;
let depth = 0;
dbg.memory.onGarbageCollection = _ => {
fired = true;
equal(depth, 0);
depth++;
try {
root.eval(`gc()`);
} finally {
equal(depth, 1);
depth--;
}
}
root.eval(`gc()`);
executeSoon(() => {
ok(fired);
equal(depth, 0);
dbg.memory.onGarbageCollection = undefined;
do_test_finished();
});
}
|