blob: 394a80571543dd39aa81c68ece910c2f8278462a (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
function run_test() {
if (!AppConstants.MOZ_GECKO_PROFILER) {
return;
}
Assert.ok(!Services.profiler.IsActive());
Assert.ok(!Services.profiler.IsPaused());
Services.profiler.StartProfiler(1000, 10, []);
// Default: Active and not paused.
Assert.ok(Services.profiler.IsActive());
Assert.ok(!Services.profiler.IsPaused());
Assert.ok(!Services.profiler.IsSamplingPaused());
// Pause everything, implicitly pauses sampling.
Services.profiler.Pause();
Assert.ok(Services.profiler.IsActive());
Assert.ok(Services.profiler.IsPaused());
Assert.ok(Services.profiler.IsSamplingPaused());
// While fully paused, pause and resume sampling only, no expected changes.
Services.profiler.PauseSampling();
Assert.ok(Services.profiler.IsActive());
Assert.ok(Services.profiler.IsPaused());
Assert.ok(Services.profiler.IsSamplingPaused());
Services.profiler.ResumeSampling();
Assert.ok(Services.profiler.IsActive());
Assert.ok(Services.profiler.IsPaused());
Assert.ok(Services.profiler.IsSamplingPaused());
// Resume everything.
Services.profiler.Resume();
Assert.ok(Services.profiler.IsActive());
Assert.ok(!Services.profiler.IsPaused());
Assert.ok(!Services.profiler.IsSamplingPaused());
// Pause sampling only.
Services.profiler.PauseSampling();
Assert.ok(Services.profiler.IsActive());
Assert.ok(!Services.profiler.IsPaused());
Assert.ok(Services.profiler.IsSamplingPaused());
// While sampling is paused, pause everything.
Services.profiler.Pause();
Assert.ok(Services.profiler.IsActive());
Assert.ok(Services.profiler.IsPaused());
Assert.ok(Services.profiler.IsSamplingPaused());
// Resume, but sampling is still paused separately.
Services.profiler.Resume();
Assert.ok(Services.profiler.IsActive());
Assert.ok(!Services.profiler.IsPaused());
Assert.ok(Services.profiler.IsSamplingPaused());
// Resume sampling only.
Services.profiler.ResumeSampling();
Assert.ok(Services.profiler.IsActive());
Assert.ok(!Services.profiler.IsPaused());
Assert.ok(!Services.profiler.IsSamplingPaused());
Services.profiler.StopProfiler();
Assert.ok(!Services.profiler.IsActive());
// Stopping is not pausing.
Assert.ok(!Services.profiler.IsPaused());
Assert.ok(!Services.profiler.IsSamplingPaused());
do_test_finished();
}
|