blob: 40c5922c5c5314e8dc215b68de94b17bb74852dd (
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
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
/**
* Test that we get "nsCycleCollector::Collect" and
* "nsCycleCollector::ForgetSkippable" markers when we force cycle collection.
*/
"use strict";
add_task(async function() {
// This test runs very slowly on linux32 debug EC2 instances.
requestLongerTimeout(2);
const target = await addTabTarget(MAIN_DOMAIN + "doc_force_cc.html");
const front = await target.getFront("performance");
const rec = await front.startRecording({ withMarkers: true });
const markers = await waitForMarkerType(front, [
"nsCycleCollector::Collect",
"nsCycleCollector::ForgetSkippable",
]);
await front.stopRecording(rec);
ok(
markers.some(m => m.name === "nsCycleCollector::Collect"),
"got some nsCycleCollector::Collect markers"
);
ok(
markers.some(m => m.name === "nsCycleCollector::ForgetSkippable"),
"got some nsCycleCollector::Collect markers"
);
await target.destroy();
gBrowser.removeCurrentTab();
});
|