mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-06 07:48:38 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
48
devtools/client/shared/test/browser_flame-graph-utils-05.js
Normal file
48
devtools/client/shared/test/browser_flame-graph-utils-05.js
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
/* Any copyright is dedicated to the Public Domain.
|
||||
http://creativecommons.org/publicdomain/zero/1.0/ */
|
||||
|
||||
"use strict";
|
||||
|
||||
// Tests that flame graph data is cached, and that the cache may be cleared.
|
||||
|
||||
const {FlameGraphUtils} = require("devtools/client/shared/widgets/FlameGraph");
|
||||
|
||||
add_task(function* () {
|
||||
yield addTab("about:blank");
|
||||
yield performTest();
|
||||
gBrowser.removeCurrentTab();
|
||||
});
|
||||
|
||||
function* performTest() {
|
||||
let out1 = FlameGraphUtils.createFlameGraphDataFromThread(TEST_DATA);
|
||||
let out2 = FlameGraphUtils.createFlameGraphDataFromThread(TEST_DATA);
|
||||
is(out1, out2, "The outputted data is identical.");
|
||||
|
||||
let out3 = FlameGraphUtils.createFlameGraphDataFromThread(
|
||||
TEST_DATA, { flattenRecursion: true }
|
||||
);
|
||||
is(out2, out3, "The outputted data is still identical.");
|
||||
|
||||
FlameGraphUtils.removeFromCache(TEST_DATA);
|
||||
let out4 = FlameGraphUtils.createFlameGraphDataFromThread(
|
||||
TEST_DATA, { flattenRecursion: true }
|
||||
);
|
||||
isnot(out3, out4, "The outputted data is not identical anymore.");
|
||||
}
|
||||
|
||||
var TEST_DATA = synthesizeProfileForTest([{
|
||||
frames: [{
|
||||
location: "A"
|
||||
}, {
|
||||
location: "A"
|
||||
}, {
|
||||
location: "A"
|
||||
}, {
|
||||
location: "B",
|
||||
}, {
|
||||
location: "B",
|
||||
}, {
|
||||
location: "C"
|
||||
}],
|
||||
time: 50,
|
||||
}]);
|
||||
Loading…
Add table
Add a link
Reference in a new issue