mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
f74b4d25f0
--HG-- extra : rebase_source : 15f48894284051c2f10d9b71c94d7074f893002a
27 lines
774 B
JavaScript
27 lines
774 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
|
|
/**
|
|
* Tests that setting the `devtools.performance.profiler.` prefs propagate to the profiler actor.
|
|
*/
|
|
function* spawnTest() {
|
|
let { panel } = yield initPerformance(SIMPLE_URL);
|
|
let { gFront } = panel.panelWin;
|
|
|
|
Services.prefs.setIntPref(PROFILER_BUFFER_SIZE_PREF, 1000);
|
|
Services.prefs.setIntPref(PROFILER_SAMPLE_RATE_PREF, 2);
|
|
|
|
yield startRecording(panel);
|
|
|
|
let { entries, interval } = yield gFront._request("profiler", "getStartOptions");
|
|
|
|
yield stopRecording(panel);
|
|
|
|
is(entries, 1000, "profiler entries option is set on profiler");
|
|
is(interval, 0.5, "profiler interval option is set on profiler");
|
|
|
|
yield teardown(panel);
|
|
finish();
|
|
}
|