gecko-dev/tools/profiler/tests/test_enterjit_osr_disabling.js

19 строки
553 B
JavaScript

function run_test() {
// Just skip the test if the profiler component isn't present.
if (!AppConstants.MOZ_GECKO_PROFILER) {
return;
}
Assert.ok(!Services.profiler.IsActive());
Services.profiler.StartProfiler(100, 10, ["js"], 1);
// The function is entered with the profiler enabled
(function() {
Services.profiler.StopProfiler();
let n = 10000;
while (--n); // OSR happens here with the profiler disabled.
// An assertion will fail when this function returns, if the
// profiler stack was misbalanced.
})();
}