##// END OF EJS Templates
test: show more profile lines in test-profile.t...
Pulkit Goyal -
r40416:1ce4fe06 default
parent child Browse files
Show More
@@ -1,165 +1,165
1 1 test --time
2 2
3 3 $ hg --time help -q help 2>&1 | grep time > /dev/null
4 4 $ hg init a
5 5 $ cd a
6 6
7 7 Function to check that statprof ran
8 8 $ statprofran () {
9 9 > egrep 'Sample count:|No samples recorded' > /dev/null
10 10 > }
11 11
12 12 test --profile
13 13
14 14 $ hg st --profile 2>&1 | statprofran
15 15
16 16 Abreviated version
17 17
18 18 $ hg st --prof 2>&1 | statprofran
19 19
20 20 In alias
21 21
22 22 $ hg --config "alias.profst=status --profile" profst 2>&1 | statprofran
23 23
24 24 #if lsprof
25 25
26 26 $ prof='hg --config profiling.type=ls --profile'
27 27
28 28 $ $prof st 2>../out
29 29 $ grep CallCount ../out > /dev/null || cat ../out
30 30
31 31 $ $prof --config profiling.output=../out st
32 32 $ grep CallCount ../out > /dev/null || cat ../out
33 33
34 34 $ $prof --config profiling.output=blackbox --config extensions.blackbox= st
35 35 $ grep CallCount .hg/blackbox.log > /dev/null || cat .hg/blackbox.log
36 36
37 37 $ $prof --config profiling.format=text st 2>../out
38 38 $ grep CallCount ../out > /dev/null || cat ../out
39 39
40 40 $ echo "[profiling]" >> $HGRCPATH
41 41 $ echo "format=kcachegrind" >> $HGRCPATH
42 42
43 43 $ $prof st 2>../out
44 44 $ grep 'events: Ticks' ../out > /dev/null || cat ../out
45 45
46 46 $ $prof --config profiling.output=../out st
47 47 $ grep 'events: Ticks' ../out > /dev/null || cat ../out
48 48
49 49 #endif
50 50
51 51 #if lsprof serve
52 52
53 53 Profiling of HTTP requests works
54 54
55 55 $ $prof --config profiling.format=text --config profiling.output=../profile.log serve -d -p $HGPORT --pid-file ../hg.pid -A ../access.log
56 56 $ cat ../hg.pid >> $DAEMON_PIDS
57 57 $ hg -q clone -U http://localhost:$HGPORT ../clone
58 58
59 59 A single profile is logged because file logging doesn't append
60 60 $ grep CallCount ../profile.log | wc -l
61 61 \s*1 (re)
62 62
63 63 #endif
64 64
65 65 Install an extension that can sleep and guarantee a profiler has time to run
66 66
67 67 $ cat >> sleepext.py << EOF
68 68 > import time
69 69 > from mercurial import registrar
70 70 > cmdtable = {}
71 71 > command = registrar.command(cmdtable)
72 72 > @command(b'sleep', [], b'hg sleep')
73 73 > def sleep(ui, *args, **kwargs):
74 74 > time.sleep(0.1)
75 75 > EOF
76 76
77 77 $ cat >> $HGRCPATH << EOF
78 78 > [extensions]
79 79 > sleep = `pwd`/sleepext.py
80 80 > EOF
81 81
82 82 statistical profiler works
83 83
84 84 $ hg --profile sleep 2>../out
85 85 $ cat ../out | statprofran
86 86
87 87 Various statprof formatters work
88 88
89 89 $ hg --profile --config profiling.statformat=byline sleep 2>../out
90 $ head -n 1 ../out
90 $ head -n 3 ../out
91 91 % cumulative self
92 92 $ cat ../out | statprofran
93 93
94 94 $ hg --profile --config profiling.statformat=bymethod sleep 2>../out
95 95 $ head -n 1 ../out
96 96 % cumulative self
97 97 $ cat ../out | statprofran
98 98
99 99 $ hg --profile --config profiling.statformat=hotpath sleep 2>../out
100 100 $ cat ../out | statprofran
101 101
102 102 $ hg --profile --config profiling.statformat=json sleep 2>../out
103 103 $ cat ../out
104 104 \[\[-?\d+.* (re)
105 105
106 106 statprof can be used as a standalone module
107 107
108 108 $ "$PYTHON" -m mercurial.statprof hotpath
109 109 must specify --file to load
110 110 [1]
111 111
112 112 $ cd ..
113 113
114 114 #if no-chg
115 115 profiler extension could be loaded before other extensions
116 116
117 117 $ cat > fooprof.py <<EOF
118 118 > from __future__ import absolute_import
119 119 > import contextlib
120 120 > import sys
121 121 > @contextlib.contextmanager
122 122 > def profile(ui, fp):
123 123 > print('fooprof: start profile')
124 124 > sys.stdout.flush()
125 125 > yield
126 126 > print('fooprof: end profile')
127 127 > sys.stdout.flush()
128 128 > def extsetup(ui):
129 129 > ui.write(b'fooprof: loaded\n')
130 130 > EOF
131 131
132 132 $ cat > otherextension.py <<EOF
133 133 > from __future__ import absolute_import
134 134 > def extsetup(ui):
135 135 > ui.write(b'otherextension: loaded\n')
136 136 > EOF
137 137
138 138 $ hg init b
139 139 $ cd b
140 140 $ cat >> .hg/hgrc <<EOF
141 141 > [extensions]
142 142 > other = $TESTTMP/otherextension.py
143 143 > fooprof = $TESTTMP/fooprof.py
144 144 > EOF
145 145
146 146 $ hg root
147 147 otherextension: loaded
148 148 fooprof: loaded
149 149 $TESTTMP/b
150 150 $ HGPROF=fooprof hg root --profile
151 151 fooprof: loaded
152 152 fooprof: start profile
153 153 otherextension: loaded
154 154 $TESTTMP/b
155 155 fooprof: end profile
156 156
157 157 $ HGPROF=other hg root --profile 2>&1 | head -n 2
158 158 otherextension: loaded
159 159 unrecognized profiler 'other' - ignored
160 160
161 161 $ HGPROF=unknown hg root --profile 2>&1 | head -n 1
162 162 unrecognized profiler 'unknown' - ignored
163 163
164 164 $ cd ..
165 165 #endif
General Comments 0
You need to be logged in to leave comments. Login now