blob: ac243ebcb20a224992a1ebb73ebd91afecddaf67 [file] [log] [blame]
Jiri Olsaf50246e2012-05-21 09:12:49 +02001
2#include "parse-events.h"
3#include "evsel.h"
4#include "evlist.h"
Borislav Petkovcd0cfad2013-12-09 17:14:24 +01005#include <api/fs/fs.h>
Steven Rostedt (Red Hat)23773ca2015-02-02 14:35:07 -05006#include <api/fs/tracefs.h>
Borislav Petkov553873e2013-12-09 17:14:23 +01007#include <api/fs/debugfs.h>
Jiri Olsac81251e2012-11-10 01:46:51 +01008#include "tests.h"
Jiri Olsa84f5d362014-07-14 23:46:48 +02009#include "debug.h"
David Howellsd2709c72012-11-19 22:21:03 +000010#include <linux/hw_breakpoint.h>
Jiri Olsaf50246e2012-05-21 09:12:49 +020011
Jiri Olsa30f31c02012-08-01 14:48:58 +020012#define PERF_TP_SAMPLE_TYPE (PERF_SAMPLE_RAW | PERF_SAMPLE_TIME | \
13 PERF_SAMPLE_CPU | PERF_SAMPLE_PERIOD)
14
Jiri Olsaf50246e2012-05-21 09:12:49 +020015static int test__checkevent_tracepoint(struct perf_evlist *evlist)
16{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -030017 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +020018
19 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
Namhyung Kim8d7d8472013-01-22 18:09:30 +090020 TEST_ASSERT_VAL("wrong number of groups", 0 == evlist->nr_groups);
Jiri Olsaf50246e2012-05-21 09:12:49 +020021 TEST_ASSERT_VAL("wrong type", PERF_TYPE_TRACEPOINT == evsel->attr.type);
22 TEST_ASSERT_VAL("wrong sample_type",
Jiri Olsa30f31c02012-08-01 14:48:58 +020023 PERF_TP_SAMPLE_TYPE == evsel->attr.sample_type);
Jiri Olsaf50246e2012-05-21 09:12:49 +020024 TEST_ASSERT_VAL("wrong sample_period", 1 == evsel->attr.sample_period);
25 return 0;
26}
27
28static int test__checkevent_tracepoint_multi(struct perf_evlist *evlist)
29{
30 struct perf_evsel *evsel;
31
32 TEST_ASSERT_VAL("wrong number of entries", evlist->nr_entries > 1);
Namhyung Kim8d7d8472013-01-22 18:09:30 +090033 TEST_ASSERT_VAL("wrong number of groups", 0 == evlist->nr_groups);
Jiri Olsaf50246e2012-05-21 09:12:49 +020034
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -030035 evlist__for_each(evlist, evsel) {
Jiri Olsaf50246e2012-05-21 09:12:49 +020036 TEST_ASSERT_VAL("wrong type",
37 PERF_TYPE_TRACEPOINT == evsel->attr.type);
38 TEST_ASSERT_VAL("wrong sample_type",
Jiri Olsa30f31c02012-08-01 14:48:58 +020039 PERF_TP_SAMPLE_TYPE == evsel->attr.sample_type);
Jiri Olsaf50246e2012-05-21 09:12:49 +020040 TEST_ASSERT_VAL("wrong sample_period",
41 1 == evsel->attr.sample_period);
42 }
43 return 0;
44}
45
46static int test__checkevent_raw(struct perf_evlist *evlist)
47{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -030048 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +020049
50 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
51 TEST_ASSERT_VAL("wrong type", PERF_TYPE_RAW == evsel->attr.type);
52 TEST_ASSERT_VAL("wrong config", 0x1a == evsel->attr.config);
53 return 0;
54}
55
56static int test__checkevent_numeric(struct perf_evlist *evlist)
57{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -030058 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +020059
60 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
61 TEST_ASSERT_VAL("wrong type", 1 == evsel->attr.type);
62 TEST_ASSERT_VAL("wrong config", 1 == evsel->attr.config);
63 return 0;
64}
65
66static int test__checkevent_symbolic_name(struct perf_evlist *evlist)
67{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -030068 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +020069
70 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
71 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
72 TEST_ASSERT_VAL("wrong config",
73 PERF_COUNT_HW_INSTRUCTIONS == evsel->attr.config);
74 return 0;
75}
76
77static int test__checkevent_symbolic_name_config(struct perf_evlist *evlist)
78{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -030079 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +020080
81 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
82 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
83 TEST_ASSERT_VAL("wrong config",
84 PERF_COUNT_HW_CPU_CYCLES == evsel->attr.config);
85 TEST_ASSERT_VAL("wrong period",
86 100000 == evsel->attr.sample_period);
87 TEST_ASSERT_VAL("wrong config1",
88 0 == evsel->attr.config1);
89 TEST_ASSERT_VAL("wrong config2",
90 1 == evsel->attr.config2);
91 return 0;
92}
93
94static int test__checkevent_symbolic_alias(struct perf_evlist *evlist)
95{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -030096 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +020097
98 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
99 TEST_ASSERT_VAL("wrong type", PERF_TYPE_SOFTWARE == evsel->attr.type);
100 TEST_ASSERT_VAL("wrong config",
101 PERF_COUNT_SW_PAGE_FAULTS == evsel->attr.config);
102 return 0;
103}
104
105static int test__checkevent_genhw(struct perf_evlist *evlist)
106{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300107 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200108
109 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
110 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HW_CACHE == evsel->attr.type);
111 TEST_ASSERT_VAL("wrong config", (1 << 16) == evsel->attr.config);
112 return 0;
113}
114
115static int test__checkevent_breakpoint(struct perf_evlist *evlist)
116{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300117 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200118
119 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
120 TEST_ASSERT_VAL("wrong type", PERF_TYPE_BREAKPOINT == evsel->attr.type);
121 TEST_ASSERT_VAL("wrong config", 0 == evsel->attr.config);
122 TEST_ASSERT_VAL("wrong bp_type", (HW_BREAKPOINT_R | HW_BREAKPOINT_W) ==
123 evsel->attr.bp_type);
124 TEST_ASSERT_VAL("wrong bp_len", HW_BREAKPOINT_LEN_4 ==
125 evsel->attr.bp_len);
126 return 0;
127}
128
129static int test__checkevent_breakpoint_x(struct perf_evlist *evlist)
130{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300131 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200132
133 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
134 TEST_ASSERT_VAL("wrong type", PERF_TYPE_BREAKPOINT == evsel->attr.type);
135 TEST_ASSERT_VAL("wrong config", 0 == evsel->attr.config);
136 TEST_ASSERT_VAL("wrong bp_type",
137 HW_BREAKPOINT_X == evsel->attr.bp_type);
138 TEST_ASSERT_VAL("wrong bp_len", sizeof(long) == evsel->attr.bp_len);
139 return 0;
140}
141
142static int test__checkevent_breakpoint_r(struct perf_evlist *evlist)
143{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300144 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200145
146 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
147 TEST_ASSERT_VAL("wrong type",
148 PERF_TYPE_BREAKPOINT == evsel->attr.type);
149 TEST_ASSERT_VAL("wrong config", 0 == evsel->attr.config);
150 TEST_ASSERT_VAL("wrong bp_type",
151 HW_BREAKPOINT_R == evsel->attr.bp_type);
152 TEST_ASSERT_VAL("wrong bp_len",
153 HW_BREAKPOINT_LEN_4 == evsel->attr.bp_len);
154 return 0;
155}
156
157static int test__checkevent_breakpoint_w(struct perf_evlist *evlist)
158{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300159 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200160
161 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
162 TEST_ASSERT_VAL("wrong type",
163 PERF_TYPE_BREAKPOINT == evsel->attr.type);
164 TEST_ASSERT_VAL("wrong config", 0 == evsel->attr.config);
165 TEST_ASSERT_VAL("wrong bp_type",
166 HW_BREAKPOINT_W == evsel->attr.bp_type);
167 TEST_ASSERT_VAL("wrong bp_len",
168 HW_BREAKPOINT_LEN_4 == evsel->attr.bp_len);
169 return 0;
170}
171
Jiri Olsa75827322012-06-29 09:22:54 +0200172static int test__checkevent_breakpoint_rw(struct perf_evlist *evlist)
173{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300174 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsa75827322012-06-29 09:22:54 +0200175
176 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
177 TEST_ASSERT_VAL("wrong type",
178 PERF_TYPE_BREAKPOINT == evsel->attr.type);
179 TEST_ASSERT_VAL("wrong config", 0 == evsel->attr.config);
180 TEST_ASSERT_VAL("wrong bp_type",
181 (HW_BREAKPOINT_R|HW_BREAKPOINT_W) == evsel->attr.bp_type);
182 TEST_ASSERT_VAL("wrong bp_len",
183 HW_BREAKPOINT_LEN_4 == evsel->attr.bp_len);
184 return 0;
185}
186
Jiri Olsaf50246e2012-05-21 09:12:49 +0200187static int test__checkevent_tracepoint_modifier(struct perf_evlist *evlist)
188{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300189 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200190
191 TEST_ASSERT_VAL("wrong exclude_user", evsel->attr.exclude_user);
192 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
193 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
194 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
195
196 return test__checkevent_tracepoint(evlist);
197}
198
199static int
200test__checkevent_tracepoint_multi_modifier(struct perf_evlist *evlist)
201{
202 struct perf_evsel *evsel;
203
204 TEST_ASSERT_VAL("wrong number of entries", evlist->nr_entries > 1);
205
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300206 evlist__for_each(evlist, evsel) {
Jiri Olsaf50246e2012-05-21 09:12:49 +0200207 TEST_ASSERT_VAL("wrong exclude_user",
208 !evsel->attr.exclude_user);
209 TEST_ASSERT_VAL("wrong exclude_kernel",
210 evsel->attr.exclude_kernel);
211 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
212 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
213 }
214
215 return test__checkevent_tracepoint_multi(evlist);
216}
217
218static int test__checkevent_raw_modifier(struct perf_evlist *evlist)
219{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300220 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200221
222 TEST_ASSERT_VAL("wrong exclude_user", evsel->attr.exclude_user);
223 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
224 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
225 TEST_ASSERT_VAL("wrong precise_ip", evsel->attr.precise_ip);
226
227 return test__checkevent_raw(evlist);
228}
229
230static int test__checkevent_numeric_modifier(struct perf_evlist *evlist)
231{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300232 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200233
234 TEST_ASSERT_VAL("wrong exclude_user", evsel->attr.exclude_user);
235 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
236 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
237 TEST_ASSERT_VAL("wrong precise_ip", evsel->attr.precise_ip);
238
239 return test__checkevent_numeric(evlist);
240}
241
242static int test__checkevent_symbolic_name_modifier(struct perf_evlist *evlist)
243{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300244 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200245
246 TEST_ASSERT_VAL("wrong exclude_user", evsel->attr.exclude_user);
247 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
248 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
249 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
250
251 return test__checkevent_symbolic_name(evlist);
252}
253
254static int test__checkevent_exclude_host_modifier(struct perf_evlist *evlist)
255{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300256 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200257
258 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
259 TEST_ASSERT_VAL("wrong exclude host", evsel->attr.exclude_host);
260
261 return test__checkevent_symbolic_name(evlist);
262}
263
264static int test__checkevent_exclude_guest_modifier(struct perf_evlist *evlist)
265{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300266 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200267
268 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
269 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
270
271 return test__checkevent_symbolic_name(evlist);
272}
273
274static int test__checkevent_symbolic_alias_modifier(struct perf_evlist *evlist)
275{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300276 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200277
278 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
279 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
280 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
281 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
282
283 return test__checkevent_symbolic_alias(evlist);
284}
285
286static int test__checkevent_genhw_modifier(struct perf_evlist *evlist)
287{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300288 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200289
290 TEST_ASSERT_VAL("wrong exclude_user", evsel->attr.exclude_user);
291 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
292 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
293 TEST_ASSERT_VAL("wrong precise_ip", evsel->attr.precise_ip);
294
295 return test__checkevent_genhw(evlist);
296}
297
298static int test__checkevent_breakpoint_modifier(struct perf_evlist *evlist)
299{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300300 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200301
Jiri Olsaf50246e2012-05-21 09:12:49 +0200302
303 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
304 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
305 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
306 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
Jiri Olsa287e74a2012-06-28 23:18:49 +0200307 TEST_ASSERT_VAL("wrong name",
Robert Richterac2ba9f2012-08-16 21:10:21 +0200308 !strcmp(perf_evsel__name(evsel), "mem:0:u"));
Jiri Olsaf50246e2012-05-21 09:12:49 +0200309
310 return test__checkevent_breakpoint(evlist);
311}
312
313static int test__checkevent_breakpoint_x_modifier(struct perf_evlist *evlist)
314{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300315 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200316
317 TEST_ASSERT_VAL("wrong exclude_user", evsel->attr.exclude_user);
318 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
319 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
320 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
Jiri Olsa287e74a2012-06-28 23:18:49 +0200321 TEST_ASSERT_VAL("wrong name",
Robert Richterac2ba9f2012-08-16 21:10:21 +0200322 !strcmp(perf_evsel__name(evsel), "mem:0:x:k"));
Jiri Olsaf50246e2012-05-21 09:12:49 +0200323
324 return test__checkevent_breakpoint_x(evlist);
325}
326
327static int test__checkevent_breakpoint_r_modifier(struct perf_evlist *evlist)
328{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300329 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200330
331 TEST_ASSERT_VAL("wrong exclude_user", evsel->attr.exclude_user);
332 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
333 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
334 TEST_ASSERT_VAL("wrong precise_ip", evsel->attr.precise_ip);
Jiri Olsa287e74a2012-06-28 23:18:49 +0200335 TEST_ASSERT_VAL("wrong name",
Robert Richterac2ba9f2012-08-16 21:10:21 +0200336 !strcmp(perf_evsel__name(evsel), "mem:0:r:hp"));
Jiri Olsaf50246e2012-05-21 09:12:49 +0200337
338 return test__checkevent_breakpoint_r(evlist);
339}
340
341static int test__checkevent_breakpoint_w_modifier(struct perf_evlist *evlist)
342{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300343 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200344
345 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
346 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
347 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
348 TEST_ASSERT_VAL("wrong precise_ip", evsel->attr.precise_ip);
Jiri Olsa287e74a2012-06-28 23:18:49 +0200349 TEST_ASSERT_VAL("wrong name",
Robert Richterac2ba9f2012-08-16 21:10:21 +0200350 !strcmp(perf_evsel__name(evsel), "mem:0:w:up"));
Jiri Olsaf50246e2012-05-21 09:12:49 +0200351
352 return test__checkevent_breakpoint_w(evlist);
353}
354
Jiri Olsa75827322012-06-29 09:22:54 +0200355static int test__checkevent_breakpoint_rw_modifier(struct perf_evlist *evlist)
356{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300357 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsa75827322012-06-29 09:22:54 +0200358
359 TEST_ASSERT_VAL("wrong exclude_user", evsel->attr.exclude_user);
360 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
361 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
362 TEST_ASSERT_VAL("wrong precise_ip", evsel->attr.precise_ip);
Jiri Olsa287e74a2012-06-28 23:18:49 +0200363 TEST_ASSERT_VAL("wrong name",
Robert Richterac2ba9f2012-08-16 21:10:21 +0200364 !strcmp(perf_evsel__name(evsel), "mem:0:rw:kp"));
Jiri Olsa75827322012-06-29 09:22:54 +0200365
366 return test__checkevent_breakpoint_rw(evlist);
367}
368
Jiri Olsaf50246e2012-05-21 09:12:49 +0200369static int test__checkevent_pmu(struct perf_evlist *evlist)
370{
371
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300372 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200373
374 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
375 TEST_ASSERT_VAL("wrong type", PERF_TYPE_RAW == evsel->attr.type);
376 TEST_ASSERT_VAL("wrong config", 10 == evsel->attr.config);
377 TEST_ASSERT_VAL("wrong config1", 1 == evsel->attr.config1);
378 TEST_ASSERT_VAL("wrong config2", 3 == evsel->attr.config2);
379 TEST_ASSERT_VAL("wrong period", 1000 == evsel->attr.sample_period);
380
381 return 0;
382}
383
384static int test__checkevent_list(struct perf_evlist *evlist)
385{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300386 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200387
388 TEST_ASSERT_VAL("wrong number of entries", 3 == evlist->nr_entries);
389
390 /* r1 */
Jiri Olsaf50246e2012-05-21 09:12:49 +0200391 TEST_ASSERT_VAL("wrong type", PERF_TYPE_RAW == evsel->attr.type);
392 TEST_ASSERT_VAL("wrong config", 1 == evsel->attr.config);
393 TEST_ASSERT_VAL("wrong config1", 0 == evsel->attr.config1);
394 TEST_ASSERT_VAL("wrong config2", 0 == evsel->attr.config2);
395 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
396 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
397 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
398 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
399
400 /* syscalls:sys_enter_open:k */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300401 evsel = perf_evsel__next(evsel);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200402 TEST_ASSERT_VAL("wrong type", PERF_TYPE_TRACEPOINT == evsel->attr.type);
403 TEST_ASSERT_VAL("wrong sample_type",
Jiri Olsa30f31c02012-08-01 14:48:58 +0200404 PERF_TP_SAMPLE_TYPE == evsel->attr.sample_type);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200405 TEST_ASSERT_VAL("wrong sample_period", 1 == evsel->attr.sample_period);
406 TEST_ASSERT_VAL("wrong exclude_user", evsel->attr.exclude_user);
407 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
408 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
409 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
410
411 /* 1:1:hp */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300412 evsel = perf_evsel__next(evsel);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200413 TEST_ASSERT_VAL("wrong type", 1 == evsel->attr.type);
414 TEST_ASSERT_VAL("wrong config", 1 == evsel->attr.config);
415 TEST_ASSERT_VAL("wrong exclude_user", evsel->attr.exclude_user);
416 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
417 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
418 TEST_ASSERT_VAL("wrong precise_ip", evsel->attr.precise_ip);
419
420 return 0;
421}
422
Jiri Olsa6b5fc392012-05-21 09:12:53 +0200423static int test__checkevent_pmu_name(struct perf_evlist *evlist)
424{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300425 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsa6b5fc392012-05-21 09:12:53 +0200426
Jiri Olsa7a25b2d2012-06-21 12:25:16 +0200427 /* cpu/config=1,name=krava/u */
Jiri Olsa6b5fc392012-05-21 09:12:53 +0200428 TEST_ASSERT_VAL("wrong number of entries", 2 == evlist->nr_entries);
429 TEST_ASSERT_VAL("wrong type", PERF_TYPE_RAW == evsel->attr.type);
430 TEST_ASSERT_VAL("wrong config", 1 == evsel->attr.config);
Arnaldo Carvalho de Melo22c8b842012-06-12 13:55:13 -0300431 TEST_ASSERT_VAL("wrong name", !strcmp(perf_evsel__name(evsel), "krava"));
Jiri Olsa6b5fc392012-05-21 09:12:53 +0200432
Jiri Olsa7a25b2d2012-06-21 12:25:16 +0200433 /* cpu/config=2/u" */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300434 evsel = perf_evsel__next(evsel);
Jiri Olsa6b5fc392012-05-21 09:12:53 +0200435 TEST_ASSERT_VAL("wrong number of entries", 2 == evlist->nr_entries);
436 TEST_ASSERT_VAL("wrong type", PERF_TYPE_RAW == evsel->attr.type);
437 TEST_ASSERT_VAL("wrong config", 2 == evsel->attr.config);
Jiri Olsa7a25b2d2012-06-21 12:25:16 +0200438 TEST_ASSERT_VAL("wrong name",
Robert Richterac2ba9f2012-08-16 21:10:21 +0200439 !strcmp(perf_evsel__name(evsel), "cpu/config=2/u"));
Jiri Olsa6b5fc392012-05-21 09:12:53 +0200440
441 return 0;
442}
443
Jiri Olsa3f3a2062012-10-10 14:53:18 +0200444static int test__checkevent_pmu_events(struct perf_evlist *evlist)
445{
Arnaldo Carvalho de Melo9a354cd2013-11-13 15:54:30 -0300446 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsa3f3a2062012-10-10 14:53:18 +0200447
Jiri Olsa3f3a2062012-10-10 14:53:18 +0200448 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
449 TEST_ASSERT_VAL("wrong type", PERF_TYPE_RAW == evsel->attr.type);
450 TEST_ASSERT_VAL("wrong exclude_user",
451 !evsel->attr.exclude_user);
452 TEST_ASSERT_VAL("wrong exclude_kernel",
453 evsel->attr.exclude_kernel);
454 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
455 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
Michael Ellermanc9ee7802013-08-06 23:28:06 +1000456 TEST_ASSERT_VAL("wrong pinned", !evsel->attr.pinned);
Jiri Olsa3f3a2062012-10-10 14:53:18 +0200457
458 return 0;
459}
460
Kan Liangffe59782014-10-07 11:08:52 -0400461
462static int test__checkevent_pmu_events_mix(struct perf_evlist *evlist)
463{
464 struct perf_evsel *evsel = perf_evlist__first(evlist);
465
466 /* pmu-event:u */
467 TEST_ASSERT_VAL("wrong number of entries", 2 == evlist->nr_entries);
468 TEST_ASSERT_VAL("wrong exclude_user",
469 !evsel->attr.exclude_user);
470 TEST_ASSERT_VAL("wrong exclude_kernel",
471 evsel->attr.exclude_kernel);
472 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
473 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
474 TEST_ASSERT_VAL("wrong pinned", !evsel->attr.pinned);
475
476 /* cpu/pmu-event/u*/
477 evsel = perf_evsel__next(evsel);
478 TEST_ASSERT_VAL("wrong number of entries", 2 == evlist->nr_entries);
479 TEST_ASSERT_VAL("wrong type", PERF_TYPE_RAW == evsel->attr.type);
480 TEST_ASSERT_VAL("wrong exclude_user",
481 !evsel->attr.exclude_user);
482 TEST_ASSERT_VAL("wrong exclude_kernel",
483 evsel->attr.exclude_kernel);
484 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
485 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
486 TEST_ASSERT_VAL("wrong pinned", !evsel->attr.pinned);
487
488 return 0;
489}
490
Jiri Olsa44293922012-06-15 14:31:42 +0800491static int test__checkterms_simple(struct list_head *terms)
492{
Arnaldo Carvalho de Melo6cee6cd2013-01-18 16:29:49 -0300493 struct parse_events_term *term;
Jiri Olsa44293922012-06-15 14:31:42 +0800494
495 /* config=10 */
Arnaldo Carvalho de Melo6cee6cd2013-01-18 16:29:49 -0300496 term = list_entry(terms->next, struct parse_events_term, list);
Jiri Olsa44293922012-06-15 14:31:42 +0800497 TEST_ASSERT_VAL("wrong type term",
498 term->type_term == PARSE_EVENTS__TERM_TYPE_CONFIG);
499 TEST_ASSERT_VAL("wrong type val",
500 term->type_val == PARSE_EVENTS__TERM_TYPE_NUM);
501 TEST_ASSERT_VAL("wrong val", term->val.num == 10);
502 TEST_ASSERT_VAL("wrong config", !term->config);
503
504 /* config1 */
Arnaldo Carvalho de Melo6cee6cd2013-01-18 16:29:49 -0300505 term = list_entry(term->list.next, struct parse_events_term, list);
Jiri Olsa44293922012-06-15 14:31:42 +0800506 TEST_ASSERT_VAL("wrong type term",
507 term->type_term == PARSE_EVENTS__TERM_TYPE_CONFIG1);
508 TEST_ASSERT_VAL("wrong type val",
509 term->type_val == PARSE_EVENTS__TERM_TYPE_NUM);
510 TEST_ASSERT_VAL("wrong val", term->val.num == 1);
511 TEST_ASSERT_VAL("wrong config", !term->config);
512
513 /* config2=3 */
Arnaldo Carvalho de Melo6cee6cd2013-01-18 16:29:49 -0300514 term = list_entry(term->list.next, struct parse_events_term, list);
Jiri Olsa44293922012-06-15 14:31:42 +0800515 TEST_ASSERT_VAL("wrong type term",
516 term->type_term == PARSE_EVENTS__TERM_TYPE_CONFIG2);
517 TEST_ASSERT_VAL("wrong type val",
518 term->type_val == PARSE_EVENTS__TERM_TYPE_NUM);
519 TEST_ASSERT_VAL("wrong val", term->val.num == 3);
520 TEST_ASSERT_VAL("wrong config", !term->config);
521
522 /* umask=1*/
Arnaldo Carvalho de Melo6cee6cd2013-01-18 16:29:49 -0300523 term = list_entry(term->list.next, struct parse_events_term, list);
Jiri Olsa44293922012-06-15 14:31:42 +0800524 TEST_ASSERT_VAL("wrong type term",
525 term->type_term == PARSE_EVENTS__TERM_TYPE_USER);
526 TEST_ASSERT_VAL("wrong type val",
527 term->type_val == PARSE_EVENTS__TERM_TYPE_NUM);
528 TEST_ASSERT_VAL("wrong val", term->val.num == 1);
529 TEST_ASSERT_VAL("wrong config", !strcmp(term->config, "umask"));
530
531 return 0;
532}
533
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200534static int test__group1(struct perf_evlist *evlist)
535{
536 struct perf_evsel *evsel, *leader;
537
538 TEST_ASSERT_VAL("wrong number of entries", 2 == evlist->nr_entries);
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900539 TEST_ASSERT_VAL("wrong number of groups", 1 == evlist->nr_groups);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200540
541 /* instructions:k */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300542 evsel = leader = perf_evlist__first(evlist);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200543 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
544 TEST_ASSERT_VAL("wrong config",
545 PERF_COUNT_HW_INSTRUCTIONS == evsel->attr.config);
546 TEST_ASSERT_VAL("wrong exclude_user", evsel->attr.exclude_user);
547 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
548 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
549 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
550 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
551 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
Namhyung Kim823254e2012-11-29 15:38:30 +0900552 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900553 TEST_ASSERT_VAL("wrong nr_members", evsel->nr_members == 2);
554 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 0);
Jiri Olsaa9f93f92013-02-01 20:37:11 +0100555 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200556
557 /* cycles:upp */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300558 evsel = perf_evsel__next(evsel);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200559 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
560 TEST_ASSERT_VAL("wrong config",
561 PERF_COUNT_HW_CPU_CYCLES == evsel->attr.config);
562 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
563 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
564 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
Jiri Olsa42be7392012-10-20 18:29:34 +0200565 /* use of precise requires exclude_guest */
566 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200567 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
568 TEST_ASSERT_VAL("wrong precise_ip", evsel->attr.precise_ip == 2);
569 TEST_ASSERT_VAL("wrong leader", evsel->leader == leader);
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900570 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 1);
Jiri Olsaa9f93f92013-02-01 20:37:11 +0100571 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200572
573 return 0;
574}
575
576static int test__group2(struct perf_evlist *evlist)
577{
578 struct perf_evsel *evsel, *leader;
579
580 TEST_ASSERT_VAL("wrong number of entries", 3 == evlist->nr_entries);
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900581 TEST_ASSERT_VAL("wrong number of groups", 1 == evlist->nr_groups);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200582
583 /* faults + :ku modifier */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300584 evsel = leader = perf_evlist__first(evlist);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200585 TEST_ASSERT_VAL("wrong type", PERF_TYPE_SOFTWARE == evsel->attr.type);
586 TEST_ASSERT_VAL("wrong config",
587 PERF_COUNT_SW_PAGE_FAULTS == evsel->attr.config);
588 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
589 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
590 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
591 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
592 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
593 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
Namhyung Kim823254e2012-11-29 15:38:30 +0900594 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900595 TEST_ASSERT_VAL("wrong nr_members", evsel->nr_members == 2);
596 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 0);
Jiri Olsaa9f93f92013-02-01 20:37:11 +0100597 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200598
599 /* cache-references + :u modifier */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300600 evsel = perf_evsel__next(evsel);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200601 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
602 TEST_ASSERT_VAL("wrong config",
603 PERF_COUNT_HW_CACHE_REFERENCES == evsel->attr.config);
604 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
605 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
606 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
Jiri Olsa5a30a992013-02-04 10:56:43 +0100607 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200608 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
609 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
610 TEST_ASSERT_VAL("wrong leader", evsel->leader == leader);
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900611 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 1);
Jiri Olsaa9f93f92013-02-01 20:37:11 +0100612 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200613
614 /* cycles:k */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300615 evsel = perf_evsel__next(evsel);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200616 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
617 TEST_ASSERT_VAL("wrong config",
618 PERF_COUNT_HW_CPU_CYCLES == evsel->attr.config);
619 TEST_ASSERT_VAL("wrong exclude_user", evsel->attr.exclude_user);
620 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
621 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
622 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
623 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
624 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
Namhyung Kim823254e2012-11-29 15:38:30 +0900625 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
Jiri Olsaa9f93f92013-02-01 20:37:11 +0100626 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200627
628 return 0;
629}
630
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300631static int test__group3(struct perf_evlist *evlist __maybe_unused)
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200632{
633 struct perf_evsel *evsel, *leader;
634
635 TEST_ASSERT_VAL("wrong number of entries", 5 == evlist->nr_entries);
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900636 TEST_ASSERT_VAL("wrong number of groups", 2 == evlist->nr_groups);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200637
638 /* group1 syscalls:sys_enter_open:H */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300639 evsel = leader = perf_evlist__first(evlist);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200640 TEST_ASSERT_VAL("wrong type", PERF_TYPE_TRACEPOINT == evsel->attr.type);
641 TEST_ASSERT_VAL("wrong sample_type",
642 PERF_TP_SAMPLE_TYPE == evsel->attr.sample_type);
643 TEST_ASSERT_VAL("wrong sample_period", 1 == evsel->attr.sample_period);
644 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
645 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
646 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
647 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
648 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
649 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
Namhyung Kim823254e2012-11-29 15:38:30 +0900650 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200651 TEST_ASSERT_VAL("wrong group name",
652 !strcmp(leader->group_name, "group1"));
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900653 TEST_ASSERT_VAL("wrong nr_members", evsel->nr_members == 2);
654 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 0);
Jiri Olsaa9f93f92013-02-01 20:37:11 +0100655 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200656
657 /* group1 cycles:kppp */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300658 evsel = perf_evsel__next(evsel);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200659 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
660 TEST_ASSERT_VAL("wrong config",
661 PERF_COUNT_HW_CPU_CYCLES == evsel->attr.config);
662 TEST_ASSERT_VAL("wrong exclude_user", evsel->attr.exclude_user);
663 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
664 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
Jiri Olsa42be7392012-10-20 18:29:34 +0200665 /* use of precise requires exclude_guest */
666 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200667 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
668 TEST_ASSERT_VAL("wrong precise_ip", evsel->attr.precise_ip == 3);
669 TEST_ASSERT_VAL("wrong leader", evsel->leader == leader);
670 TEST_ASSERT_VAL("wrong group name", !evsel->group_name);
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900671 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 1);
Jiri Olsaa9f93f92013-02-01 20:37:11 +0100672 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200673
674 /* group2 cycles + G modifier */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300675 evsel = leader = perf_evsel__next(evsel);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200676 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
677 TEST_ASSERT_VAL("wrong config",
678 PERF_COUNT_HW_CPU_CYCLES == evsel->attr.config);
679 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
680 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
681 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
682 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
683 TEST_ASSERT_VAL("wrong exclude host", evsel->attr.exclude_host);
684 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
Namhyung Kim823254e2012-11-29 15:38:30 +0900685 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200686 TEST_ASSERT_VAL("wrong group name",
687 !strcmp(leader->group_name, "group2"));
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900688 TEST_ASSERT_VAL("wrong nr_members", evsel->nr_members == 2);
689 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 0);
Jiri Olsaa9f93f92013-02-01 20:37:11 +0100690 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200691
692 /* group2 1:3 + G modifier */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300693 evsel = perf_evsel__next(evsel);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200694 TEST_ASSERT_VAL("wrong type", 1 == evsel->attr.type);
695 TEST_ASSERT_VAL("wrong config", 3 == evsel->attr.config);
696 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
697 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
698 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
699 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
700 TEST_ASSERT_VAL("wrong exclude host", evsel->attr.exclude_host);
701 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
702 TEST_ASSERT_VAL("wrong leader", evsel->leader == leader);
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900703 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 1);
Jiri Olsaa9f93f92013-02-01 20:37:11 +0100704 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200705
706 /* instructions:u */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300707 evsel = perf_evsel__next(evsel);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200708 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
709 TEST_ASSERT_VAL("wrong config",
710 PERF_COUNT_HW_INSTRUCTIONS == evsel->attr.config);
711 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
712 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
713 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
714 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
715 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
716 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
Namhyung Kim823254e2012-11-29 15:38:30 +0900717 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
Jiri Olsaa9f93f92013-02-01 20:37:11 +0100718 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200719
720 return 0;
721}
722
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300723static int test__group4(struct perf_evlist *evlist __maybe_unused)
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200724{
725 struct perf_evsel *evsel, *leader;
726
727 TEST_ASSERT_VAL("wrong number of entries", 2 == evlist->nr_entries);
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900728 TEST_ASSERT_VAL("wrong number of groups", 1 == evlist->nr_groups);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200729
730 /* cycles:u + p */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300731 evsel = leader = perf_evlist__first(evlist);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200732 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
733 TEST_ASSERT_VAL("wrong config",
734 PERF_COUNT_HW_CPU_CYCLES == evsel->attr.config);
735 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
736 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
737 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
Jiri Olsa42be7392012-10-20 18:29:34 +0200738 /* use of precise requires exclude_guest */
739 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200740 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
741 TEST_ASSERT_VAL("wrong precise_ip", evsel->attr.precise_ip == 1);
742 TEST_ASSERT_VAL("wrong group name", !evsel->group_name);
Namhyung Kim823254e2012-11-29 15:38:30 +0900743 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900744 TEST_ASSERT_VAL("wrong nr_members", evsel->nr_members == 2);
745 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 0);
Jiri Olsaa9f93f92013-02-01 20:37:11 +0100746 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200747
748 /* instructions:kp + p */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300749 evsel = perf_evsel__next(evsel);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200750 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
751 TEST_ASSERT_VAL("wrong config",
752 PERF_COUNT_HW_INSTRUCTIONS == evsel->attr.config);
753 TEST_ASSERT_VAL("wrong exclude_user", evsel->attr.exclude_user);
754 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
755 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
Jiri Olsa42be7392012-10-20 18:29:34 +0200756 /* use of precise requires exclude_guest */
757 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200758 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
759 TEST_ASSERT_VAL("wrong precise_ip", evsel->attr.precise_ip == 2);
760 TEST_ASSERT_VAL("wrong leader", evsel->leader == leader);
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900761 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 1);
Jiri Olsaa9f93f92013-02-01 20:37:11 +0100762 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200763
764 return 0;
765}
766
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300767static int test__group5(struct perf_evlist *evlist __maybe_unused)
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200768{
769 struct perf_evsel *evsel, *leader;
770
771 TEST_ASSERT_VAL("wrong number of entries", 5 == evlist->nr_entries);
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900772 TEST_ASSERT_VAL("wrong number of groups", 2 == evlist->nr_groups);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200773
774 /* cycles + G */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300775 evsel = leader = perf_evlist__first(evlist);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200776 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
777 TEST_ASSERT_VAL("wrong config",
778 PERF_COUNT_HW_CPU_CYCLES == evsel->attr.config);
779 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
780 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
781 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
782 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
783 TEST_ASSERT_VAL("wrong exclude host", evsel->attr.exclude_host);
784 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
785 TEST_ASSERT_VAL("wrong group name", !evsel->group_name);
Namhyung Kim823254e2012-11-29 15:38:30 +0900786 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900787 TEST_ASSERT_VAL("wrong nr_members", evsel->nr_members == 2);
788 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 0);
Jiri Olsaa9f93f92013-02-01 20:37:11 +0100789 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200790
791 /* instructions + G */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300792 evsel = perf_evsel__next(evsel);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200793 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
794 TEST_ASSERT_VAL("wrong config",
795 PERF_COUNT_HW_INSTRUCTIONS == evsel->attr.config);
796 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
797 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
798 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
799 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
800 TEST_ASSERT_VAL("wrong exclude host", evsel->attr.exclude_host);
801 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
802 TEST_ASSERT_VAL("wrong leader", evsel->leader == leader);
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900803 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 1);
Jiri Olsaa9f93f92013-02-01 20:37:11 +0100804 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200805
806 /* cycles:G */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300807 evsel = leader = perf_evsel__next(evsel);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200808 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
809 TEST_ASSERT_VAL("wrong config",
810 PERF_COUNT_HW_CPU_CYCLES == evsel->attr.config);
811 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
812 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
813 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
814 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
815 TEST_ASSERT_VAL("wrong exclude host", evsel->attr.exclude_host);
816 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
817 TEST_ASSERT_VAL("wrong group name", !evsel->group_name);
Namhyung Kim823254e2012-11-29 15:38:30 +0900818 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900819 TEST_ASSERT_VAL("wrong nr_members", evsel->nr_members == 2);
820 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 0);
Jiri Olsaa9f93f92013-02-01 20:37:11 +0100821 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200822
823 /* instructions:G */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300824 evsel = perf_evsel__next(evsel);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200825 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
826 TEST_ASSERT_VAL("wrong config",
827 PERF_COUNT_HW_INSTRUCTIONS == evsel->attr.config);
828 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
829 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
830 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
831 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
832 TEST_ASSERT_VAL("wrong exclude host", evsel->attr.exclude_host);
833 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
834 TEST_ASSERT_VAL("wrong leader", evsel->leader == leader);
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900835 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 1);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200836
837 /* cycles */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300838 evsel = perf_evsel__next(evsel);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200839 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
840 TEST_ASSERT_VAL("wrong config",
841 PERF_COUNT_HW_CPU_CYCLES == evsel->attr.config);
842 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
843 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
844 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
845 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
846 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
847 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
Namhyung Kim823254e2012-11-29 15:38:30 +0900848 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200849
850 return 0;
851}
852
Jiri Olsa5a30a992013-02-04 10:56:43 +0100853static int test__group_gh1(struct perf_evlist *evlist)
854{
855 struct perf_evsel *evsel, *leader;
856
857 TEST_ASSERT_VAL("wrong number of entries", 2 == evlist->nr_entries);
858 TEST_ASSERT_VAL("wrong number of groups", 1 == evlist->nr_groups);
859
860 /* cycles + :H group modifier */
861 evsel = leader = perf_evlist__first(evlist);
862 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
863 TEST_ASSERT_VAL("wrong config",
864 PERF_COUNT_HW_CPU_CYCLES == evsel->attr.config);
865 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
866 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
867 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
868 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
869 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
870 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
871 TEST_ASSERT_VAL("wrong group name", !evsel->group_name);
872 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
873 TEST_ASSERT_VAL("wrong nr_members", evsel->nr_members == 2);
874 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 0);
875
876 /* cache-misses:G + :H group modifier */
877 evsel = perf_evsel__next(evsel);
878 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
879 TEST_ASSERT_VAL("wrong config",
880 PERF_COUNT_HW_CACHE_MISSES == evsel->attr.config);
881 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
882 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
883 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
884 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
885 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
886 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
887 TEST_ASSERT_VAL("wrong leader", evsel->leader == leader);
888 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 1);
889
890 return 0;
891}
892
893static int test__group_gh2(struct perf_evlist *evlist)
894{
895 struct perf_evsel *evsel, *leader;
896
897 TEST_ASSERT_VAL("wrong number of entries", 2 == evlist->nr_entries);
898 TEST_ASSERT_VAL("wrong number of groups", 1 == evlist->nr_groups);
899
900 /* cycles + :G group modifier */
901 evsel = leader = perf_evlist__first(evlist);
902 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
903 TEST_ASSERT_VAL("wrong config",
904 PERF_COUNT_HW_CPU_CYCLES == evsel->attr.config);
905 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
906 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
907 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
908 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
909 TEST_ASSERT_VAL("wrong exclude host", evsel->attr.exclude_host);
910 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
911 TEST_ASSERT_VAL("wrong group name", !evsel->group_name);
912 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
913 TEST_ASSERT_VAL("wrong nr_members", evsel->nr_members == 2);
914 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 0);
915
916 /* cache-misses:H + :G group modifier */
917 evsel = perf_evsel__next(evsel);
918 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
919 TEST_ASSERT_VAL("wrong config",
920 PERF_COUNT_HW_CACHE_MISSES == evsel->attr.config);
921 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
922 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
923 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
924 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
925 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
926 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
927 TEST_ASSERT_VAL("wrong leader", evsel->leader == leader);
928 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 1);
929
930 return 0;
931}
932
933static int test__group_gh3(struct perf_evlist *evlist)
934{
935 struct perf_evsel *evsel, *leader;
936
937 TEST_ASSERT_VAL("wrong number of entries", 2 == evlist->nr_entries);
938 TEST_ASSERT_VAL("wrong number of groups", 1 == evlist->nr_groups);
939
940 /* cycles:G + :u group modifier */
941 evsel = leader = perf_evlist__first(evlist);
942 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
943 TEST_ASSERT_VAL("wrong config",
944 PERF_COUNT_HW_CPU_CYCLES == evsel->attr.config);
945 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
946 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
947 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
948 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
949 TEST_ASSERT_VAL("wrong exclude host", evsel->attr.exclude_host);
950 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
951 TEST_ASSERT_VAL("wrong group name", !evsel->group_name);
952 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
953 TEST_ASSERT_VAL("wrong nr_members", evsel->nr_members == 2);
954 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 0);
955
956 /* cache-misses:H + :u group modifier */
957 evsel = perf_evsel__next(evsel);
958 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
959 TEST_ASSERT_VAL("wrong config",
960 PERF_COUNT_HW_CACHE_MISSES == evsel->attr.config);
961 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
962 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
963 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
964 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
965 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
966 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
967 TEST_ASSERT_VAL("wrong leader", evsel->leader == leader);
968 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 1);
969
970 return 0;
971}
972
973static int test__group_gh4(struct perf_evlist *evlist)
974{
975 struct perf_evsel *evsel, *leader;
976
977 TEST_ASSERT_VAL("wrong number of entries", 2 == evlist->nr_entries);
978 TEST_ASSERT_VAL("wrong number of groups", 1 == evlist->nr_groups);
979
980 /* cycles:G + :uG group modifier */
981 evsel = leader = perf_evlist__first(evlist);
982 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
983 TEST_ASSERT_VAL("wrong config",
984 PERF_COUNT_HW_CPU_CYCLES == evsel->attr.config);
985 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
986 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
987 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
988 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
989 TEST_ASSERT_VAL("wrong exclude host", evsel->attr.exclude_host);
990 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
991 TEST_ASSERT_VAL("wrong group name", !evsel->group_name);
992 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
993 TEST_ASSERT_VAL("wrong nr_members", evsel->nr_members == 2);
994 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 0);
995
996 /* cache-misses:H + :uG group modifier */
997 evsel = perf_evsel__next(evsel);
998 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
999 TEST_ASSERT_VAL("wrong config",
1000 PERF_COUNT_HW_CACHE_MISSES == evsel->attr.config);
1001 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
1002 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
1003 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
1004 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
1005 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
1006 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
1007 TEST_ASSERT_VAL("wrong leader", evsel->leader == leader);
1008 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 1);
1009
1010 return 0;
1011}
1012
Jiri Olsaa9f93f92013-02-01 20:37:11 +01001013static int test__leader_sample1(struct perf_evlist *evlist)
1014{
1015 struct perf_evsel *evsel, *leader;
1016
1017 TEST_ASSERT_VAL("wrong number of entries", 3 == evlist->nr_entries);
1018
1019 /* cycles - sampling group leader */
1020 evsel = leader = perf_evlist__first(evlist);
1021 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
1022 TEST_ASSERT_VAL("wrong config",
1023 PERF_COUNT_HW_CPU_CYCLES == evsel->attr.config);
1024 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
1025 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
1026 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
1027 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
1028 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
1029 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
1030 TEST_ASSERT_VAL("wrong group name", !evsel->group_name);
1031 TEST_ASSERT_VAL("wrong leader", evsel->leader == leader);
1032 TEST_ASSERT_VAL("wrong sample_read", evsel->sample_read);
1033
1034 /* cache-misses - not sampling */
1035 evsel = perf_evsel__next(evsel);
1036 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
1037 TEST_ASSERT_VAL("wrong config",
1038 PERF_COUNT_HW_CACHE_MISSES == evsel->attr.config);
1039 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
1040 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
1041 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
1042 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
1043 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
1044 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
1045 TEST_ASSERT_VAL("wrong leader", evsel->leader == leader);
1046 TEST_ASSERT_VAL("wrong sample_read", evsel->sample_read);
1047
1048 /* branch-misses - not sampling */
1049 evsel = perf_evsel__next(evsel);
1050 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
1051 TEST_ASSERT_VAL("wrong config",
1052 PERF_COUNT_HW_BRANCH_MISSES == evsel->attr.config);
1053 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
1054 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
1055 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
1056 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
1057 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
1058 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
1059 TEST_ASSERT_VAL("wrong group name", !evsel->group_name);
1060 TEST_ASSERT_VAL("wrong leader", evsel->leader == leader);
1061 TEST_ASSERT_VAL("wrong sample_read", evsel->sample_read);
1062
1063 return 0;
1064}
1065
1066static int test__leader_sample2(struct perf_evlist *evlist __maybe_unused)
1067{
1068 struct perf_evsel *evsel, *leader;
1069
1070 TEST_ASSERT_VAL("wrong number of entries", 2 == evlist->nr_entries);
1071
1072 /* instructions - sampling group leader */
1073 evsel = leader = perf_evlist__first(evlist);
1074 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
1075 TEST_ASSERT_VAL("wrong config",
1076 PERF_COUNT_HW_INSTRUCTIONS == evsel->attr.config);
1077 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
1078 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
1079 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
1080 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
1081 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
1082 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
1083 TEST_ASSERT_VAL("wrong group name", !evsel->group_name);
1084 TEST_ASSERT_VAL("wrong leader", evsel->leader == leader);
1085 TEST_ASSERT_VAL("wrong sample_read", evsel->sample_read);
1086
1087 /* branch-misses - not sampling */
1088 evsel = perf_evsel__next(evsel);
1089 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
1090 TEST_ASSERT_VAL("wrong config",
1091 PERF_COUNT_HW_BRANCH_MISSES == evsel->attr.config);
1092 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
1093 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
1094 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
1095 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
1096 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
1097 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
1098 TEST_ASSERT_VAL("wrong group name", !evsel->group_name);
1099 TEST_ASSERT_VAL("wrong leader", evsel->leader == leader);
1100 TEST_ASSERT_VAL("wrong sample_read", evsel->sample_read);
1101
1102 return 0;
1103}
1104
Michael Ellermanc9ee7802013-08-06 23:28:06 +10001105static int test__checkevent_pinned_modifier(struct perf_evlist *evlist)
1106{
1107 struct perf_evsel *evsel = perf_evlist__first(evlist);
1108
1109 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
1110 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
1111 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
1112 TEST_ASSERT_VAL("wrong precise_ip", evsel->attr.precise_ip);
1113 TEST_ASSERT_VAL("wrong pinned", evsel->attr.pinned);
1114
1115 return test__checkevent_symbolic_name(evlist);
1116}
1117
1118static int test__pinned_group(struct perf_evlist *evlist)
1119{
1120 struct perf_evsel *evsel, *leader;
1121
1122 TEST_ASSERT_VAL("wrong number of entries", 3 == evlist->nr_entries);
1123
1124 /* cycles - group leader */
1125 evsel = leader = perf_evlist__first(evlist);
1126 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
1127 TEST_ASSERT_VAL("wrong config",
1128 PERF_COUNT_HW_CPU_CYCLES == evsel->attr.config);
1129 TEST_ASSERT_VAL("wrong group name", !evsel->group_name);
1130 TEST_ASSERT_VAL("wrong leader", evsel->leader == leader);
1131 TEST_ASSERT_VAL("wrong pinned", evsel->attr.pinned);
1132
1133 /* cache-misses - can not be pinned, but will go on with the leader */
1134 evsel = perf_evsel__next(evsel);
1135 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
1136 TEST_ASSERT_VAL("wrong config",
1137 PERF_COUNT_HW_CACHE_MISSES == evsel->attr.config);
1138 TEST_ASSERT_VAL("wrong pinned", !evsel->attr.pinned);
1139
1140 /* branch-misses - ditto */
1141 evsel = perf_evsel__next(evsel);
1142 TEST_ASSERT_VAL("wrong config",
1143 PERF_COUNT_HW_BRANCH_MISSES == evsel->attr.config);
1144 TEST_ASSERT_VAL("wrong pinned", !evsel->attr.pinned);
1145
1146 return 0;
1147}
1148
Jacob Shinec323982014-05-29 17:26:52 +02001149static int test__checkevent_breakpoint_len(struct perf_evlist *evlist)
1150{
1151 struct perf_evsel *evsel = perf_evlist__first(evlist);
1152
1153 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
1154 TEST_ASSERT_VAL("wrong type", PERF_TYPE_BREAKPOINT == evsel->attr.type);
1155 TEST_ASSERT_VAL("wrong config", 0 == evsel->attr.config);
1156 TEST_ASSERT_VAL("wrong bp_type", (HW_BREAKPOINT_R | HW_BREAKPOINT_W) ==
1157 evsel->attr.bp_type);
1158 TEST_ASSERT_VAL("wrong bp_len", HW_BREAKPOINT_LEN_1 ==
1159 evsel->attr.bp_len);
1160
1161 return 0;
1162}
1163
1164static int test__checkevent_breakpoint_len_w(struct perf_evlist *evlist)
1165{
1166 struct perf_evsel *evsel = perf_evlist__first(evlist);
1167
1168 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
1169 TEST_ASSERT_VAL("wrong type", PERF_TYPE_BREAKPOINT == evsel->attr.type);
1170 TEST_ASSERT_VAL("wrong config", 0 == evsel->attr.config);
1171 TEST_ASSERT_VAL("wrong bp_type", HW_BREAKPOINT_W ==
1172 evsel->attr.bp_type);
1173 TEST_ASSERT_VAL("wrong bp_len", HW_BREAKPOINT_LEN_2 ==
1174 evsel->attr.bp_len);
1175
1176 return 0;
1177}
1178
1179static int
1180test__checkevent_breakpoint_len_rw_modifier(struct perf_evlist *evlist)
1181{
1182 struct perf_evsel *evsel = perf_evlist__first(evlist);
1183
1184 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
1185 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
1186 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
1187 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
1188
1189 return test__checkevent_breakpoint_rw(evlist);
1190}
1191
Jiri Olsa82ce75d2012-12-17 14:08:38 +01001192static int count_tracepoints(void)
1193{
1194 char events_path[PATH_MAX];
1195 struct dirent *events_ent;
Steven Rostedt (Red Hat)23773ca2015-02-02 14:35:07 -05001196 const char *mountpoint;
Jiri Olsa82ce75d2012-12-17 14:08:38 +01001197 DIR *events_dir;
1198 int cnt = 0;
1199
Steven Rostedt (Red Hat)23773ca2015-02-02 14:35:07 -05001200 mountpoint = tracefs_find_mountpoint();
1201 if (mountpoint) {
1202 scnprintf(events_path, PATH_MAX, "%s/events",
1203 mountpoint);
1204 } else {
1205 mountpoint = debugfs_find_mountpoint();
1206 scnprintf(events_path, PATH_MAX, "%s/tracing/events",
1207 mountpoint);
1208 }
Jiri Olsa82ce75d2012-12-17 14:08:38 +01001209
1210 events_dir = opendir(events_path);
1211
1212 TEST_ASSERT_VAL("Can't open events dir", events_dir);
1213
1214 while ((events_ent = readdir(events_dir))) {
1215 char sys_path[PATH_MAX];
1216 struct dirent *sys_ent;
1217 DIR *sys_dir;
1218
1219 if (!strcmp(events_ent->d_name, ".")
1220 || !strcmp(events_ent->d_name, "..")
1221 || !strcmp(events_ent->d_name, "enable")
1222 || !strcmp(events_ent->d_name, "header_event")
1223 || !strcmp(events_ent->d_name, "header_page"))
1224 continue;
1225
1226 scnprintf(sys_path, PATH_MAX, "%s/%s",
1227 events_path, events_ent->d_name);
1228
1229 sys_dir = opendir(sys_path);
1230 TEST_ASSERT_VAL("Can't open sys dir", sys_dir);
1231
1232 while ((sys_ent = readdir(sys_dir))) {
1233 if (!strcmp(sys_ent->d_name, ".")
1234 || !strcmp(sys_ent->d_name, "..")
1235 || !strcmp(sys_ent->d_name, "enable")
1236 || !strcmp(sys_ent->d_name, "filter"))
1237 continue;
1238
1239 cnt++;
1240 }
1241
1242 closedir(sys_dir);
1243 }
1244
1245 closedir(events_dir);
1246 return cnt;
1247}
1248
1249static int test__all_tracepoints(struct perf_evlist *evlist)
1250{
1251 TEST_ASSERT_VAL("wrong events count",
1252 count_tracepoints() == evlist->nr_entries);
1253
1254 return test__checkevent_tracepoint_multi(evlist);
1255}
1256
Arnaldo Carvalho de Melo23b63392013-01-18 16:56:57 -03001257struct evlist_test {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001258 const char *name;
1259 __u32 type;
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001260 const int id;
Jiri Olsaf50246e2012-05-21 09:12:49 +02001261 int (*check)(struct perf_evlist *evlist);
1262};
1263
Arnaldo Carvalho de Melo23b63392013-01-18 16:56:57 -03001264static struct evlist_test test__events[] = {
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001265 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001266 .name = "syscalls:sys_enter_open",
1267 .check = test__checkevent_tracepoint,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001268 .id = 0,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001269 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001270 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001271 .name = "syscalls:*",
1272 .check = test__checkevent_tracepoint_multi,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001273 .id = 1,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001274 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001275 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001276 .name = "r1a",
1277 .check = test__checkevent_raw,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001278 .id = 2,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001279 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001280 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001281 .name = "1:1",
1282 .check = test__checkevent_numeric,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001283 .id = 3,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001284 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001285 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001286 .name = "instructions",
1287 .check = test__checkevent_symbolic_name,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001288 .id = 4,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001289 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001290 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001291 .name = "cycles/period=100000,config2/",
1292 .check = test__checkevent_symbolic_name_config,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001293 .id = 5,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001294 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001295 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001296 .name = "faults",
1297 .check = test__checkevent_symbolic_alias,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001298 .id = 6,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001299 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001300 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001301 .name = "L1-dcache-load-miss",
1302 .check = test__checkevent_genhw,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001303 .id = 7,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001304 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001305 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001306 .name = "mem:0",
1307 .check = test__checkevent_breakpoint,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001308 .id = 8,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001309 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001310 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001311 .name = "mem:0:x",
1312 .check = test__checkevent_breakpoint_x,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001313 .id = 9,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001314 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001315 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001316 .name = "mem:0:r",
1317 .check = test__checkevent_breakpoint_r,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001318 .id = 10,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001319 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001320 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001321 .name = "mem:0:w",
1322 .check = test__checkevent_breakpoint_w,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001323 .id = 11,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001324 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001325 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001326 .name = "syscalls:sys_enter_open:k",
1327 .check = test__checkevent_tracepoint_modifier,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001328 .id = 12,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001329 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001330 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001331 .name = "syscalls:*:u",
1332 .check = test__checkevent_tracepoint_multi_modifier,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001333 .id = 13,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001334 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001335 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001336 .name = "r1a:kp",
1337 .check = test__checkevent_raw_modifier,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001338 .id = 14,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001339 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001340 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001341 .name = "1:1:hp",
1342 .check = test__checkevent_numeric_modifier,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001343 .id = 15,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001344 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001345 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001346 .name = "instructions:h",
1347 .check = test__checkevent_symbolic_name_modifier,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001348 .id = 16,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001349 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001350 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001351 .name = "faults:u",
1352 .check = test__checkevent_symbolic_alias_modifier,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001353 .id = 17,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001354 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001355 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001356 .name = "L1-dcache-load-miss:kp",
1357 .check = test__checkevent_genhw_modifier,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001358 .id = 18,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001359 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001360 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001361 .name = "mem:0:u",
1362 .check = test__checkevent_breakpoint_modifier,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001363 .id = 19,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001364 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001365 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001366 .name = "mem:0:x:k",
1367 .check = test__checkevent_breakpoint_x_modifier,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001368 .id = 20,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001369 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001370 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001371 .name = "mem:0:r:hp",
1372 .check = test__checkevent_breakpoint_r_modifier,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001373 .id = 21,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001374 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001375 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001376 .name = "mem:0:w:up",
1377 .check = test__checkevent_breakpoint_w_modifier,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001378 .id = 22,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001379 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001380 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001381 .name = "r1,syscalls:sys_enter_open:k,1:1:hp",
1382 .check = test__checkevent_list,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001383 .id = 23,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001384 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001385 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001386 .name = "instructions:G",
1387 .check = test__checkevent_exclude_host_modifier,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001388 .id = 24,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001389 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001390 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001391 .name = "instructions:H",
1392 .check = test__checkevent_exclude_guest_modifier,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001393 .id = 25,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001394 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001395 {
Jiri Olsa75827322012-06-29 09:22:54 +02001396 .name = "mem:0:rw",
1397 .check = test__checkevent_breakpoint_rw,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001398 .id = 26,
Jiri Olsa75827322012-06-29 09:22:54 +02001399 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001400 {
Jiri Olsa75827322012-06-29 09:22:54 +02001401 .name = "mem:0:rw:kp",
1402 .check = test__checkevent_breakpoint_rw_modifier,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001403 .id = 27,
Jiri Olsa75827322012-06-29 09:22:54 +02001404 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001405 {
Jiri Olsa905f5ee2012-08-08 12:23:52 +02001406 .name = "{instructions:k,cycles:upp}",
1407 .check = test__group1,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001408 .id = 28,
Jiri Olsa905f5ee2012-08-08 12:23:52 +02001409 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001410 {
Jiri Olsa905f5ee2012-08-08 12:23:52 +02001411 .name = "{faults:k,cache-references}:u,cycles:k",
1412 .check = test__group2,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001413 .id = 29,
Jiri Olsa905f5ee2012-08-08 12:23:52 +02001414 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001415 {
Jiri Olsa905f5ee2012-08-08 12:23:52 +02001416 .name = "group1{syscalls:sys_enter_open:H,cycles:kppp},group2{cycles,1:3}:G,instructions:u",
1417 .check = test__group3,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001418 .id = 30,
Jiri Olsa905f5ee2012-08-08 12:23:52 +02001419 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001420 {
Jiri Olsa905f5ee2012-08-08 12:23:52 +02001421 .name = "{cycles:u,instructions:kp}:p",
1422 .check = test__group4,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001423 .id = 31,
Jiri Olsa905f5ee2012-08-08 12:23:52 +02001424 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001425 {
Jiri Olsa905f5ee2012-08-08 12:23:52 +02001426 .name = "{cycles,instructions}:G,{cycles:G,instructions:G},cycles",
1427 .check = test__group5,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001428 .id = 32,
Jiri Olsa905f5ee2012-08-08 12:23:52 +02001429 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001430 {
Jiri Olsa82ce75d2012-12-17 14:08:38 +01001431 .name = "*:*",
1432 .check = test__all_tracepoints,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001433 .id = 33,
Jiri Olsa82ce75d2012-12-17 14:08:38 +01001434 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001435 {
Jiri Olsa5a30a992013-02-04 10:56:43 +01001436 .name = "{cycles,cache-misses:G}:H",
1437 .check = test__group_gh1,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001438 .id = 34,
Jiri Olsa5a30a992013-02-04 10:56:43 +01001439 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001440 {
Jiri Olsa5a30a992013-02-04 10:56:43 +01001441 .name = "{cycles,cache-misses:H}:G",
1442 .check = test__group_gh2,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001443 .id = 35,
Jiri Olsa5a30a992013-02-04 10:56:43 +01001444 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001445 {
Jiri Olsa5a30a992013-02-04 10:56:43 +01001446 .name = "{cycles:G,cache-misses:H}:u",
1447 .check = test__group_gh3,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001448 .id = 36,
Jiri Olsa5a30a992013-02-04 10:56:43 +01001449 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001450 {
Jiri Olsa5a30a992013-02-04 10:56:43 +01001451 .name = "{cycles:G,cache-misses:H}:uG",
1452 .check = test__group_gh4,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001453 .id = 37,
Jiri Olsa5a30a992013-02-04 10:56:43 +01001454 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001455 {
Jiri Olsaa9f93f92013-02-01 20:37:11 +01001456 .name = "{cycles,cache-misses,branch-misses}:S",
1457 .check = test__leader_sample1,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001458 .id = 38,
Jiri Olsaa9f93f92013-02-01 20:37:11 +01001459 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001460 {
Jiri Olsaa9f93f92013-02-01 20:37:11 +01001461 .name = "{instructions,branch-misses}:Su",
1462 .check = test__leader_sample2,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001463 .id = 39,
Jiri Olsaa9f93f92013-02-01 20:37:11 +01001464 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001465 {
Michael Ellermanc9ee7802013-08-06 23:28:06 +10001466 .name = "instructions:uDp",
1467 .check = test__checkevent_pinned_modifier,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001468 .id = 40,
Michael Ellermanc9ee7802013-08-06 23:28:06 +10001469 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001470 {
Michael Ellermanc9ee7802013-08-06 23:28:06 +10001471 .name = "{cycles,cache-misses,branch-misses}:D",
1472 .check = test__pinned_group,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001473 .id = 41,
Michael Ellermanc9ee7802013-08-06 23:28:06 +10001474 },
Jacob Shinec323982014-05-29 17:26:52 +02001475 {
1476 .name = "mem:0/1",
1477 .check = test__checkevent_breakpoint_len,
1478 .id = 42,
1479 },
1480 {
1481 .name = "mem:0/2:w",
1482 .check = test__checkevent_breakpoint_len_w,
1483 .id = 43,
1484 },
1485 {
1486 .name = "mem:0/4:rw:u",
1487 .check = test__checkevent_breakpoint_len_rw_modifier,
1488 .id = 44
1489 },
Alexander Yaryginc0bc8c62014-04-25 17:34:07 +02001490#if defined(__s390x__)
1491 {
1492 .name = "kvm-s390:kvm_s390_create_vm",
1493 .check = test__checkevent_tracepoint,
1494 .id = 100,
1495 },
1496#endif
Jiri Olsaf50246e2012-05-21 09:12:49 +02001497};
1498
Arnaldo Carvalho de Melo23b63392013-01-18 16:56:57 -03001499static struct evlist_test test__events_pmu[] = {
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001500 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001501 .name = "cpu/config=10,config1,config2=3,period=1000/u",
1502 .check = test__checkevent_pmu,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001503 .id = 0,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001504 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001505 {
Jiri Olsa6b5fc392012-05-21 09:12:53 +02001506 .name = "cpu/config=1,name=krava/u,cpu/config=2/u",
1507 .check = test__checkevent_pmu_name,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001508 .id = 1,
Jiri Olsa6b5fc392012-05-21 09:12:53 +02001509 },
Jiri Olsaf50246e2012-05-21 09:12:49 +02001510};
1511
Arnaldo Carvalho de Melo23b63392013-01-18 16:56:57 -03001512struct terms_test {
Jiri Olsa44293922012-06-15 14:31:42 +08001513 const char *str;
1514 __u32 type;
1515 int (*check)(struct list_head *terms);
1516};
1517
Arnaldo Carvalho de Melo23b63392013-01-18 16:56:57 -03001518static struct terms_test test__terms[] = {
Jiri Olsa44293922012-06-15 14:31:42 +08001519 [0] = {
1520 .str = "config=10,config1,config2=3,umask=1",
1521 .check = test__checkterms_simple,
1522 },
1523};
1524
Arnaldo Carvalho de Melo23b63392013-01-18 16:56:57 -03001525static int test_event(struct evlist_test *e)
Jiri Olsaf50246e2012-05-21 09:12:49 +02001526{
1527 struct perf_evlist *evlist;
1528 int ret;
1529
Namhyung Kim334fe7a2013-03-11 16:43:12 +09001530 evlist = perf_evlist__new();
Jiri Olsaf50246e2012-05-21 09:12:49 +02001531 if (evlist == NULL)
1532 return -ENOMEM;
1533
Jiri Olsad8f7bbc2013-01-15 14:39:51 +01001534 ret = parse_events(evlist, e->name);
Jiri Olsaf50246e2012-05-21 09:12:49 +02001535 if (ret) {
1536 pr_debug("failed to parse event '%s', err %d\n",
1537 e->name, ret);
Arnaldo Carvalho de Melo2d4352c2014-01-03 17:30:04 -03001538 } else {
1539 ret = e->check(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +02001540 }
Arnaldo Carvalho de Melo48000a12014-12-17 17:24:45 -03001541
Jiri Olsaf50246e2012-05-21 09:12:49 +02001542 perf_evlist__delete(evlist);
1543
1544 return ret;
1545}
1546
Arnaldo Carvalho de Melo23b63392013-01-18 16:56:57 -03001547static int test_events(struct evlist_test *events, unsigned cnt)
Jiri Olsaf50246e2012-05-21 09:12:49 +02001548{
Robert Richter9bfbbc62012-08-21 20:03:15 +02001549 int ret1, ret2 = 0;
Jiri Olsaf50246e2012-05-21 09:12:49 +02001550 unsigned i;
1551
1552 for (i = 0; i < cnt; i++) {
Arnaldo Carvalho de Melo23b63392013-01-18 16:56:57 -03001553 struct evlist_test *e = &events[i];
Jiri Olsaf50246e2012-05-21 09:12:49 +02001554
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001555 pr_debug("running test %d '%s'\n", e->id, e->name);
Robert Richter9bfbbc62012-08-21 20:03:15 +02001556 ret1 = test_event(e);
1557 if (ret1)
1558 ret2 = ret1;
Jiri Olsa44293922012-06-15 14:31:42 +08001559 }
1560
Robert Richter9bfbbc62012-08-21 20:03:15 +02001561 return ret2;
Jiri Olsa44293922012-06-15 14:31:42 +08001562}
1563
Arnaldo Carvalho de Melo23b63392013-01-18 16:56:57 -03001564static int test_term(struct terms_test *t)
Jiri Olsa44293922012-06-15 14:31:42 +08001565{
David Ahernc549aca2013-07-02 13:27:24 -06001566 struct list_head terms;
Jiri Olsa44293922012-06-15 14:31:42 +08001567 int ret;
1568
David Ahernc549aca2013-07-02 13:27:24 -06001569 INIT_LIST_HEAD(&terms);
Jiri Olsa44293922012-06-15 14:31:42 +08001570
David Ahernc549aca2013-07-02 13:27:24 -06001571 ret = parse_events_terms(&terms, t->str);
Jiri Olsa44293922012-06-15 14:31:42 +08001572 if (ret) {
1573 pr_debug("failed to parse terms '%s', err %d\n",
1574 t->str , ret);
1575 return ret;
1576 }
1577
David Ahernc549aca2013-07-02 13:27:24 -06001578 ret = t->check(&terms);
1579 parse_events__free_terms(&terms);
Jiri Olsa44293922012-06-15 14:31:42 +08001580
1581 return ret;
1582}
1583
Arnaldo Carvalho de Melo23b63392013-01-18 16:56:57 -03001584static int test_terms(struct terms_test *terms, unsigned cnt)
Jiri Olsa44293922012-06-15 14:31:42 +08001585{
1586 int ret = 0;
1587 unsigned i;
1588
1589 for (i = 0; i < cnt; i++) {
Arnaldo Carvalho de Melo23b63392013-01-18 16:56:57 -03001590 struct terms_test *t = &terms[i];
Jiri Olsa44293922012-06-15 14:31:42 +08001591
1592 pr_debug("running test %d '%s'\n", i, t->str);
1593 ret = test_term(t);
Jiri Olsaf50246e2012-05-21 09:12:49 +02001594 if (ret)
1595 break;
1596 }
1597
1598 return ret;
1599}
1600
1601static int test_pmu(void)
1602{
1603 struct stat st;
1604 char path[PATH_MAX];
1605 int ret;
1606
1607 snprintf(path, PATH_MAX, "%s/bus/event_source/devices/cpu/format/",
Arnaldo Carvalho de Melocf38fad2013-11-05 14:48:50 -03001608 sysfs__mountpoint());
Jiri Olsaf50246e2012-05-21 09:12:49 +02001609
1610 ret = stat(path, &st);
1611 if (ret)
Masanari Iida3fd44cd2012-07-18 01:20:59 +09001612 pr_debug("omitting PMU cpu tests\n");
Jiri Olsaf50246e2012-05-21 09:12:49 +02001613 return !ret;
1614}
1615
Jiri Olsa3f3a2062012-10-10 14:53:18 +02001616static int test_pmu_events(void)
1617{
1618 struct stat st;
1619 char path[PATH_MAX];
1620 struct dirent *ent;
1621 DIR *dir;
1622 int ret;
1623
1624 snprintf(path, PATH_MAX, "%s/bus/event_source/devices/cpu/events/",
Arnaldo Carvalho de Melocf38fad2013-11-05 14:48:50 -03001625 sysfs__mountpoint());
Jiri Olsa3f3a2062012-10-10 14:53:18 +02001626
1627 ret = stat(path, &st);
1628 if (ret) {
Masanari Iidaa895d572013-04-09 02:06:50 +09001629 pr_debug("omitting PMU cpu events tests\n");
Jiri Olsa3f3a2062012-10-10 14:53:18 +02001630 return 0;
1631 }
1632
1633 dir = opendir(path);
1634 if (!dir) {
1635 pr_debug("can't open pmu event dir");
1636 return -1;
1637 }
1638
1639 while (!ret && (ent = readdir(dir))) {
1640#define MAX_NAME 100
Arnaldo Carvalho de Melo23b63392013-01-18 16:56:57 -03001641 struct evlist_test e;
Jiri Olsa3f3a2062012-10-10 14:53:18 +02001642 char name[MAX_NAME];
1643
1644 if (!strcmp(ent->d_name, ".") ||
1645 !strcmp(ent->d_name, ".."))
1646 continue;
1647
1648 snprintf(name, MAX_NAME, "cpu/event=%s/u", ent->d_name);
1649
1650 e.name = name;
1651 e.check = test__checkevent_pmu_events;
1652
1653 ret = test_event(&e);
Kan Liangffe59782014-10-07 11:08:52 -04001654 if (ret)
1655 break;
1656 snprintf(name, MAX_NAME, "%s:u,cpu/event=%s/u", ent->d_name, ent->d_name);
1657 e.name = name;
1658 e.check = test__checkevent_pmu_events_mix;
1659 ret = test_event(&e);
Jiri Olsa3f3a2062012-10-10 14:53:18 +02001660#undef MAX_NAME
1661 }
1662
1663 closedir(dir);
1664 return ret;
1665}
1666
Jiri Olsac81251e2012-11-10 01:46:51 +01001667int test__parse_events(void)
Jiri Olsaf50246e2012-05-21 09:12:49 +02001668{
Robert Richter9bfbbc62012-08-21 20:03:15 +02001669 int ret1, ret2 = 0;
Jiri Olsaf50246e2012-05-21 09:12:49 +02001670
Jiri Olsaebf124f2012-07-04 00:00:47 +02001671#define TEST_EVENTS(tests) \
1672do { \
Robert Richter9bfbbc62012-08-21 20:03:15 +02001673 ret1 = test_events(tests, ARRAY_SIZE(tests)); \
1674 if (!ret2) \
1675 ret2 = ret1; \
Jiri Olsaebf124f2012-07-04 00:00:47 +02001676} while (0)
Jiri Olsa44293922012-06-15 14:31:42 +08001677
Jiri Olsaebf124f2012-07-04 00:00:47 +02001678 TEST_EVENTS(test__events);
Jiri Olsa44293922012-06-15 14:31:42 +08001679
Jiri Olsaebf124f2012-07-04 00:00:47 +02001680 if (test_pmu())
1681 TEST_EVENTS(test__events_pmu);
Jiri Olsa44293922012-06-15 14:31:42 +08001682
Jiri Olsa3f3a2062012-10-10 14:53:18 +02001683 if (test_pmu()) {
1684 int ret = test_pmu_events();
1685 if (ret)
1686 return ret;
1687 }
1688
Robert Richter9bfbbc62012-08-21 20:03:15 +02001689 ret1 = test_terms(test__terms, ARRAY_SIZE(test__terms));
1690 if (!ret2)
1691 ret2 = ret1;
1692
1693 return ret2;
Jiri Olsaf50246e2012-05-21 09:12:49 +02001694}