perf tools: Add aux_watermark member of struct perf_event_attr
[deliverable/linux.git] / tools / perf / tests / parse-events.c
CommitLineData
f50246e2
JO
1
2#include "parse-events.h"
3#include "evsel.h"
4#include "evlist.h"
cd0cfad7 5#include <api/fs/fs.h>
23773ca1 6#include <api/fs/tracefs.h>
553873e1 7#include <api/fs/debugfs.h>
c81251e8 8#include "tests.h"
84f5d36f 9#include "debug.h"
d2709c7c 10#include <linux/hw_breakpoint.h>
f50246e2 11
30f31c0a
JO
12#define PERF_TP_SAMPLE_TYPE (PERF_SAMPLE_RAW | PERF_SAMPLE_TIME | \
13 PERF_SAMPLE_CPU | PERF_SAMPLE_PERIOD)
14
f50246e2
JO
15static int test__checkevent_tracepoint(struct perf_evlist *evlist)
16{
0c21f736 17 struct perf_evsel *evsel = perf_evlist__first(evlist);
f50246e2
JO
18
19 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
8d7d8474 20 TEST_ASSERT_VAL("wrong number of groups", 0 == evlist->nr_groups);
f50246e2
JO
21 TEST_ASSERT_VAL("wrong type", PERF_TYPE_TRACEPOINT == evsel->attr.type);
22 TEST_ASSERT_VAL("wrong sample_type",
30f31c0a 23 PERF_TP_SAMPLE_TYPE == evsel->attr.sample_type);
f50246e2
JO
24 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);
8d7d8474 33 TEST_ASSERT_VAL("wrong number of groups", 0 == evlist->nr_groups);
f50246e2 34
0050f7aa 35 evlist__for_each(evlist, evsel) {
f50246e2
JO
36 TEST_ASSERT_VAL("wrong type",
37 PERF_TYPE_TRACEPOINT == evsel->attr.type);
38 TEST_ASSERT_VAL("wrong sample_type",
30f31c0a 39 PERF_TP_SAMPLE_TYPE == evsel->attr.sample_type);
f50246e2
JO
40 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{
0c21f736 48 struct perf_evsel *evsel = perf_evlist__first(evlist);
f50246e2
JO
49
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{
0c21f736 58 struct perf_evsel *evsel = perf_evlist__first(evlist);
f50246e2
JO
59
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{
0c21f736 68 struct perf_evsel *evsel = perf_evlist__first(evlist);
f50246e2
JO
69
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{
0c21f736 79 struct perf_evsel *evsel = perf_evlist__first(evlist);
f50246e2
JO
80
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{
0c21f736 96 struct perf_evsel *evsel = perf_evlist__first(evlist);
f50246e2
JO
97
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{
0c21f736 107 struct perf_evsel *evsel = perf_evlist__first(evlist);
f50246e2
JO
108
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{
0c21f736 117 struct perf_evsel *evsel = perf_evlist__first(evlist);
f50246e2
JO
118
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{
0c21f736 131 struct perf_evsel *evsel = perf_evlist__first(evlist);
f50246e2
JO
132
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{
0c21f736 144 struct perf_evsel *evsel = perf_evlist__first(evlist);
f50246e2
JO
145
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{
0c21f736 159 struct perf_evsel *evsel = perf_evlist__first(evlist);
f50246e2
JO
160
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
7582732f
JO
172static int test__checkevent_breakpoint_rw(struct perf_evlist *evlist)
173{
0c21f736 174 struct perf_evsel *evsel = perf_evlist__first(evlist);
7582732f
JO
175
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
f50246e2
JO
187static int test__checkevent_tracepoint_modifier(struct perf_evlist *evlist)
188{
0c21f736 189 struct perf_evsel *evsel = perf_evlist__first(evlist);
f50246e2
JO
190
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
0050f7aa 206 evlist__for_each(evlist, evsel) {
f50246e2
JO
207 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{
0c21f736 220 struct perf_evsel *evsel = perf_evlist__first(evlist);
f50246e2
JO
221
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{
0c21f736 232 struct perf_evsel *evsel = perf_evlist__first(evlist);
f50246e2
JO
233
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{
0c21f736 244 struct perf_evsel *evsel = perf_evlist__first(evlist);
f50246e2
JO
245
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{
0c21f736 256 struct perf_evsel *evsel = perf_evlist__first(evlist);
f50246e2
JO
257
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{
0c21f736 266 struct perf_evsel *evsel = perf_evlist__first(evlist);
f50246e2
JO
267
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{
0c21f736 276 struct perf_evsel *evsel = perf_evlist__first(evlist);
f50246e2
JO
277
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{
0c21f736 288 struct perf_evsel *evsel = perf_evlist__first(evlist);
f50246e2
JO
289
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
a1e12da4
JO
298static int test__checkevent_exclude_idle_modifier(struct perf_evlist *evlist)
299{
300 struct perf_evsel *evsel = perf_evlist__first(evlist);
301
302 TEST_ASSERT_VAL("wrong exclude idle", evsel->attr.exclude_idle);
303 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
304 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
305 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
306 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
307 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
308 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
309
310 return test__checkevent_symbolic_name(evlist);
311}
312
313static int test__checkevent_exclude_idle_modifier_1(struct perf_evlist *evlist)
314{
315 struct perf_evsel *evsel = perf_evlist__first(evlist);
316
317 TEST_ASSERT_VAL("wrong exclude idle", evsel->attr.exclude_idle);
318 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
319 TEST_ASSERT_VAL("wrong exclude host", evsel->attr.exclude_host);
320 TEST_ASSERT_VAL("wrong exclude_user", evsel->attr.exclude_user);
321 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
322 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
323 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
324
325 return test__checkevent_symbolic_name(evlist);
326}
327
f50246e2
JO
328static int test__checkevent_breakpoint_modifier(struct perf_evlist *evlist)
329{
0c21f736 330 struct perf_evsel *evsel = perf_evlist__first(evlist);
f50246e2 331
f50246e2
JO
332
333 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
334 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
335 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
336 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
287e74aa 337 TEST_ASSERT_VAL("wrong name",
ac2ba9f3 338 !strcmp(perf_evsel__name(evsel), "mem:0:u"));
f50246e2
JO
339
340 return test__checkevent_breakpoint(evlist);
341}
342
343static int test__checkevent_breakpoint_x_modifier(struct perf_evlist *evlist)
344{
0c21f736 345 struct perf_evsel *evsel = perf_evlist__first(evlist);
f50246e2
JO
346
347 TEST_ASSERT_VAL("wrong exclude_user", evsel->attr.exclude_user);
348 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
349 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
350 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
287e74aa 351 TEST_ASSERT_VAL("wrong name",
ac2ba9f3 352 !strcmp(perf_evsel__name(evsel), "mem:0:x:k"));
f50246e2
JO
353
354 return test__checkevent_breakpoint_x(evlist);
355}
356
357static int test__checkevent_breakpoint_r_modifier(struct perf_evlist *evlist)
358{
0c21f736 359 struct perf_evsel *evsel = perf_evlist__first(evlist);
f50246e2
JO
360
361 TEST_ASSERT_VAL("wrong exclude_user", evsel->attr.exclude_user);
362 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
363 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
364 TEST_ASSERT_VAL("wrong precise_ip", evsel->attr.precise_ip);
287e74aa 365 TEST_ASSERT_VAL("wrong name",
ac2ba9f3 366 !strcmp(perf_evsel__name(evsel), "mem:0:r:hp"));
f50246e2
JO
367
368 return test__checkevent_breakpoint_r(evlist);
369}
370
371static int test__checkevent_breakpoint_w_modifier(struct perf_evlist *evlist)
372{
0c21f736 373 struct perf_evsel *evsel = perf_evlist__first(evlist);
f50246e2
JO
374
375 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
376 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
377 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
378 TEST_ASSERT_VAL("wrong precise_ip", evsel->attr.precise_ip);
287e74aa 379 TEST_ASSERT_VAL("wrong name",
ac2ba9f3 380 !strcmp(perf_evsel__name(evsel), "mem:0:w:up"));
f50246e2
JO
381
382 return test__checkevent_breakpoint_w(evlist);
383}
384
7582732f
JO
385static int test__checkevent_breakpoint_rw_modifier(struct perf_evlist *evlist)
386{
0c21f736 387 struct perf_evsel *evsel = perf_evlist__first(evlist);
7582732f
JO
388
389 TEST_ASSERT_VAL("wrong exclude_user", evsel->attr.exclude_user);
390 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
391 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
392 TEST_ASSERT_VAL("wrong precise_ip", evsel->attr.precise_ip);
287e74aa 393 TEST_ASSERT_VAL("wrong name",
ac2ba9f3 394 !strcmp(perf_evsel__name(evsel), "mem:0:rw:kp"));
7582732f
JO
395
396 return test__checkevent_breakpoint_rw(evlist);
397}
398
f50246e2
JO
399static int test__checkevent_pmu(struct perf_evlist *evlist)
400{
401
0c21f736 402 struct perf_evsel *evsel = perf_evlist__first(evlist);
f50246e2
JO
403
404 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
405 TEST_ASSERT_VAL("wrong type", PERF_TYPE_RAW == evsel->attr.type);
406 TEST_ASSERT_VAL("wrong config", 10 == evsel->attr.config);
407 TEST_ASSERT_VAL("wrong config1", 1 == evsel->attr.config1);
408 TEST_ASSERT_VAL("wrong config2", 3 == evsel->attr.config2);
409 TEST_ASSERT_VAL("wrong period", 1000 == evsel->attr.sample_period);
410
411 return 0;
412}
413
414static int test__checkevent_list(struct perf_evlist *evlist)
415{
0c21f736 416 struct perf_evsel *evsel = perf_evlist__first(evlist);
f50246e2
JO
417
418 TEST_ASSERT_VAL("wrong number of entries", 3 == evlist->nr_entries);
419
420 /* r1 */
f50246e2
JO
421 TEST_ASSERT_VAL("wrong type", PERF_TYPE_RAW == evsel->attr.type);
422 TEST_ASSERT_VAL("wrong config", 1 == evsel->attr.config);
423 TEST_ASSERT_VAL("wrong config1", 0 == evsel->attr.config1);
424 TEST_ASSERT_VAL("wrong config2", 0 == evsel->attr.config2);
425 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
426 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
427 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
428 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
429
430 /* syscalls:sys_enter_open:k */
0c21f736 431 evsel = perf_evsel__next(evsel);
f50246e2
JO
432 TEST_ASSERT_VAL("wrong type", PERF_TYPE_TRACEPOINT == evsel->attr.type);
433 TEST_ASSERT_VAL("wrong sample_type",
30f31c0a 434 PERF_TP_SAMPLE_TYPE == evsel->attr.sample_type);
f50246e2
JO
435 TEST_ASSERT_VAL("wrong sample_period", 1 == evsel->attr.sample_period);
436 TEST_ASSERT_VAL("wrong exclude_user", evsel->attr.exclude_user);
437 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
438 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
439 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
440
441 /* 1:1:hp */
0c21f736 442 evsel = perf_evsel__next(evsel);
f50246e2
JO
443 TEST_ASSERT_VAL("wrong type", 1 == evsel->attr.type);
444 TEST_ASSERT_VAL("wrong config", 1 == evsel->attr.config);
445 TEST_ASSERT_VAL("wrong exclude_user", evsel->attr.exclude_user);
446 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
447 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
448 TEST_ASSERT_VAL("wrong precise_ip", evsel->attr.precise_ip);
449
450 return 0;
451}
452
6b5fc39b
JO
453static int test__checkevent_pmu_name(struct perf_evlist *evlist)
454{
0c21f736 455 struct perf_evsel *evsel = perf_evlist__first(evlist);
6b5fc39b 456
7a25b2d3 457 /* cpu/config=1,name=krava/u */
6b5fc39b
JO
458 TEST_ASSERT_VAL("wrong number of entries", 2 == evlist->nr_entries);
459 TEST_ASSERT_VAL("wrong type", PERF_TYPE_RAW == evsel->attr.type);
460 TEST_ASSERT_VAL("wrong config", 1 == evsel->attr.config);
22c8b843 461 TEST_ASSERT_VAL("wrong name", !strcmp(perf_evsel__name(evsel), "krava"));
6b5fc39b 462
7a25b2d3 463 /* cpu/config=2/u" */
0c21f736 464 evsel = perf_evsel__next(evsel);
6b5fc39b
JO
465 TEST_ASSERT_VAL("wrong number of entries", 2 == evlist->nr_entries);
466 TEST_ASSERT_VAL("wrong type", PERF_TYPE_RAW == evsel->attr.type);
467 TEST_ASSERT_VAL("wrong config", 2 == evsel->attr.config);
7a25b2d3 468 TEST_ASSERT_VAL("wrong name",
ac2ba9f3 469 !strcmp(perf_evsel__name(evsel), "cpu/config=2/u"));
6b5fc39b
JO
470
471 return 0;
472}
473
3f3a2064
JO
474static int test__checkevent_pmu_events(struct perf_evlist *evlist)
475{
9a354cdc 476 struct perf_evsel *evsel = perf_evlist__first(evlist);
3f3a2064 477
3f3a2064
JO
478 TEST_ASSERT_VAL("wrong number of entries", 1 == 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);
c9ee780f 486 TEST_ASSERT_VAL("wrong pinned", !evsel->attr.pinned);
3f3a2064
JO
487
488 return 0;
489}
490
ffe59788
KL
491
492static int test__checkevent_pmu_events_mix(struct perf_evlist *evlist)
493{
494 struct perf_evsel *evsel = perf_evlist__first(evlist);
495
496 /* pmu-event:u */
497 TEST_ASSERT_VAL("wrong number of entries", 2 == evlist->nr_entries);
498 TEST_ASSERT_VAL("wrong exclude_user",
499 !evsel->attr.exclude_user);
500 TEST_ASSERT_VAL("wrong exclude_kernel",
501 evsel->attr.exclude_kernel);
502 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
503 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
504 TEST_ASSERT_VAL("wrong pinned", !evsel->attr.pinned);
505
506 /* cpu/pmu-event/u*/
507 evsel = perf_evsel__next(evsel);
508 TEST_ASSERT_VAL("wrong number of entries", 2 == evlist->nr_entries);
509 TEST_ASSERT_VAL("wrong type", PERF_TYPE_RAW == evsel->attr.type);
510 TEST_ASSERT_VAL("wrong exclude_user",
511 !evsel->attr.exclude_user);
512 TEST_ASSERT_VAL("wrong exclude_kernel",
513 evsel->attr.exclude_kernel);
514 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
515 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
516 TEST_ASSERT_VAL("wrong pinned", !evsel->attr.pinned);
517
518 return 0;
519}
520
4429392e
JO
521static int test__checkterms_simple(struct list_head *terms)
522{
6cee6cd3 523 struct parse_events_term *term;
4429392e
JO
524
525 /* config=10 */
6cee6cd3 526 term = list_entry(terms->next, struct parse_events_term, list);
4429392e
JO
527 TEST_ASSERT_VAL("wrong type term",
528 term->type_term == PARSE_EVENTS__TERM_TYPE_CONFIG);
529 TEST_ASSERT_VAL("wrong type val",
530 term->type_val == PARSE_EVENTS__TERM_TYPE_NUM);
531 TEST_ASSERT_VAL("wrong val", term->val.num == 10);
532 TEST_ASSERT_VAL("wrong config", !term->config);
533
534 /* config1 */
6cee6cd3 535 term = list_entry(term->list.next, struct parse_events_term, list);
4429392e
JO
536 TEST_ASSERT_VAL("wrong type term",
537 term->type_term == PARSE_EVENTS__TERM_TYPE_CONFIG1);
538 TEST_ASSERT_VAL("wrong type val",
539 term->type_val == PARSE_EVENTS__TERM_TYPE_NUM);
540 TEST_ASSERT_VAL("wrong val", term->val.num == 1);
541 TEST_ASSERT_VAL("wrong config", !term->config);
542
543 /* config2=3 */
6cee6cd3 544 term = list_entry(term->list.next, struct parse_events_term, list);
4429392e
JO
545 TEST_ASSERT_VAL("wrong type term",
546 term->type_term == PARSE_EVENTS__TERM_TYPE_CONFIG2);
547 TEST_ASSERT_VAL("wrong type val",
548 term->type_val == PARSE_EVENTS__TERM_TYPE_NUM);
549 TEST_ASSERT_VAL("wrong val", term->val.num == 3);
550 TEST_ASSERT_VAL("wrong config", !term->config);
551
552 /* umask=1*/
6cee6cd3 553 term = list_entry(term->list.next, struct parse_events_term, list);
4429392e
JO
554 TEST_ASSERT_VAL("wrong type term",
555 term->type_term == PARSE_EVENTS__TERM_TYPE_USER);
556 TEST_ASSERT_VAL("wrong type val",
557 term->type_val == PARSE_EVENTS__TERM_TYPE_NUM);
558 TEST_ASSERT_VAL("wrong val", term->val.num == 1);
559 TEST_ASSERT_VAL("wrong config", !strcmp(term->config, "umask"));
560
561 return 0;
562}
563
905f5ee2
JO
564static int test__group1(struct perf_evlist *evlist)
565{
566 struct perf_evsel *evsel, *leader;
567
568 TEST_ASSERT_VAL("wrong number of entries", 2 == evlist->nr_entries);
8d7d8474 569 TEST_ASSERT_VAL("wrong number of groups", 1 == evlist->nr_groups);
905f5ee2
JO
570
571 /* instructions:k */
0c21f736 572 evsel = leader = perf_evlist__first(evlist);
905f5ee2
JO
573 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
574 TEST_ASSERT_VAL("wrong config",
575 PERF_COUNT_HW_INSTRUCTIONS == evsel->attr.config);
576 TEST_ASSERT_VAL("wrong exclude_user", evsel->attr.exclude_user);
577 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
578 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
579 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
580 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
581 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
823254ed 582 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
8d7d8474
NK
583 TEST_ASSERT_VAL("wrong nr_members", evsel->nr_members == 2);
584 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 0);
a9f93f97 585 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
905f5ee2
JO
586
587 /* cycles:upp */
0c21f736 588 evsel = perf_evsel__next(evsel);
905f5ee2
JO
589 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
590 TEST_ASSERT_VAL("wrong config",
591 PERF_COUNT_HW_CPU_CYCLES == evsel->attr.config);
592 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
593 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
594 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
42be7398
JO
595 /* use of precise requires exclude_guest */
596 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
905f5ee2
JO
597 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
598 TEST_ASSERT_VAL("wrong precise_ip", evsel->attr.precise_ip == 2);
599 TEST_ASSERT_VAL("wrong leader", evsel->leader == leader);
8d7d8474 600 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 1);
a9f93f97 601 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
905f5ee2
JO
602
603 return 0;
604}
605
606static int test__group2(struct perf_evlist *evlist)
607{
608 struct perf_evsel *evsel, *leader;
609
610 TEST_ASSERT_VAL("wrong number of entries", 3 == evlist->nr_entries);
8d7d8474 611 TEST_ASSERT_VAL("wrong number of groups", 1 == evlist->nr_groups);
905f5ee2
JO
612
613 /* faults + :ku modifier */
0c21f736 614 evsel = leader = perf_evlist__first(evlist);
905f5ee2
JO
615 TEST_ASSERT_VAL("wrong type", PERF_TYPE_SOFTWARE == evsel->attr.type);
616 TEST_ASSERT_VAL("wrong config",
617 PERF_COUNT_SW_PAGE_FAULTS == evsel->attr.config);
618 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
619 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
620 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
621 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
622 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
623 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
823254ed 624 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
8d7d8474
NK
625 TEST_ASSERT_VAL("wrong nr_members", evsel->nr_members == 2);
626 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 0);
a9f93f97 627 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
905f5ee2
JO
628
629 /* cache-references + :u modifier */
0c21f736 630 evsel = perf_evsel__next(evsel);
905f5ee2
JO
631 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
632 TEST_ASSERT_VAL("wrong config",
633 PERF_COUNT_HW_CACHE_REFERENCES == evsel->attr.config);
634 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
635 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
636 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
5a30a99f 637 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
905f5ee2
JO
638 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
639 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
640 TEST_ASSERT_VAL("wrong leader", evsel->leader == leader);
8d7d8474 641 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 1);
a9f93f97 642 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
905f5ee2
JO
643
644 /* cycles:k */
0c21f736 645 evsel = perf_evsel__next(evsel);
905f5ee2
JO
646 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
647 TEST_ASSERT_VAL("wrong config",
648 PERF_COUNT_HW_CPU_CYCLES == evsel->attr.config);
649 TEST_ASSERT_VAL("wrong exclude_user", evsel->attr.exclude_user);
650 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
651 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
652 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
653 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
654 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
823254ed 655 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
a9f93f97 656 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
905f5ee2
JO
657
658 return 0;
659}
660
1d037ca1 661static int test__group3(struct perf_evlist *evlist __maybe_unused)
905f5ee2
JO
662{
663 struct perf_evsel *evsel, *leader;
664
665 TEST_ASSERT_VAL("wrong number of entries", 5 == evlist->nr_entries);
8d7d8474 666 TEST_ASSERT_VAL("wrong number of groups", 2 == evlist->nr_groups);
905f5ee2
JO
667
668 /* group1 syscalls:sys_enter_open:H */
0c21f736 669 evsel = leader = perf_evlist__first(evlist);
905f5ee2
JO
670 TEST_ASSERT_VAL("wrong type", PERF_TYPE_TRACEPOINT == evsel->attr.type);
671 TEST_ASSERT_VAL("wrong sample_type",
672 PERF_TP_SAMPLE_TYPE == evsel->attr.sample_type);
673 TEST_ASSERT_VAL("wrong sample_period", 1 == evsel->attr.sample_period);
674 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
675 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
676 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
677 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
678 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
679 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
823254ed 680 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
905f5ee2
JO
681 TEST_ASSERT_VAL("wrong group name",
682 !strcmp(leader->group_name, "group1"));
8d7d8474
NK
683 TEST_ASSERT_VAL("wrong nr_members", evsel->nr_members == 2);
684 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 0);
a9f93f97 685 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
905f5ee2
JO
686
687 /* group1 cycles:kppp */
0c21f736 688 evsel = perf_evsel__next(evsel);
905f5ee2
JO
689 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
690 TEST_ASSERT_VAL("wrong config",
691 PERF_COUNT_HW_CPU_CYCLES == evsel->attr.config);
692 TEST_ASSERT_VAL("wrong exclude_user", evsel->attr.exclude_user);
693 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
694 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
42be7398
JO
695 /* use of precise requires exclude_guest */
696 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
905f5ee2
JO
697 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
698 TEST_ASSERT_VAL("wrong precise_ip", evsel->attr.precise_ip == 3);
699 TEST_ASSERT_VAL("wrong leader", evsel->leader == leader);
700 TEST_ASSERT_VAL("wrong group name", !evsel->group_name);
8d7d8474 701 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 1);
a9f93f97 702 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
905f5ee2
JO
703
704 /* group2 cycles + G modifier */
0c21f736 705 evsel = leader = perf_evsel__next(evsel);
905f5ee2
JO
706 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
707 TEST_ASSERT_VAL("wrong config",
708 PERF_COUNT_HW_CPU_CYCLES == evsel->attr.config);
709 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
710 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
711 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
712 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
713 TEST_ASSERT_VAL("wrong exclude host", evsel->attr.exclude_host);
714 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
823254ed 715 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
905f5ee2
JO
716 TEST_ASSERT_VAL("wrong group name",
717 !strcmp(leader->group_name, "group2"));
8d7d8474
NK
718 TEST_ASSERT_VAL("wrong nr_members", evsel->nr_members == 2);
719 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 0);
a9f93f97 720 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
905f5ee2
JO
721
722 /* group2 1:3 + G modifier */
0c21f736 723 evsel = perf_evsel__next(evsel);
905f5ee2
JO
724 TEST_ASSERT_VAL("wrong type", 1 == evsel->attr.type);
725 TEST_ASSERT_VAL("wrong config", 3 == evsel->attr.config);
726 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
727 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
728 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
729 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
730 TEST_ASSERT_VAL("wrong exclude host", evsel->attr.exclude_host);
731 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
732 TEST_ASSERT_VAL("wrong leader", evsel->leader == leader);
8d7d8474 733 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 1);
a9f93f97 734 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
905f5ee2
JO
735
736 /* instructions:u */
0c21f736 737 evsel = perf_evsel__next(evsel);
905f5ee2
JO
738 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
739 TEST_ASSERT_VAL("wrong config",
740 PERF_COUNT_HW_INSTRUCTIONS == evsel->attr.config);
741 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
742 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
743 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
744 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
745 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
746 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
823254ed 747 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
a9f93f97 748 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
905f5ee2
JO
749
750 return 0;
751}
752
1d037ca1 753static int test__group4(struct perf_evlist *evlist __maybe_unused)
905f5ee2
JO
754{
755 struct perf_evsel *evsel, *leader;
756
757 TEST_ASSERT_VAL("wrong number of entries", 2 == evlist->nr_entries);
8d7d8474 758 TEST_ASSERT_VAL("wrong number of groups", 1 == evlist->nr_groups);
905f5ee2
JO
759
760 /* cycles:u + p */
0c21f736 761 evsel = leader = perf_evlist__first(evlist);
905f5ee2
JO
762 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
763 TEST_ASSERT_VAL("wrong config",
764 PERF_COUNT_HW_CPU_CYCLES == evsel->attr.config);
765 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
766 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
767 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
42be7398
JO
768 /* use of precise requires exclude_guest */
769 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
905f5ee2
JO
770 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
771 TEST_ASSERT_VAL("wrong precise_ip", evsel->attr.precise_ip == 1);
772 TEST_ASSERT_VAL("wrong group name", !evsel->group_name);
823254ed 773 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
8d7d8474
NK
774 TEST_ASSERT_VAL("wrong nr_members", evsel->nr_members == 2);
775 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 0);
a9f93f97 776 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
905f5ee2
JO
777
778 /* instructions:kp + p */
0c21f736 779 evsel = perf_evsel__next(evsel);
905f5ee2
JO
780 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
781 TEST_ASSERT_VAL("wrong config",
782 PERF_COUNT_HW_INSTRUCTIONS == evsel->attr.config);
783 TEST_ASSERT_VAL("wrong exclude_user", evsel->attr.exclude_user);
784 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
785 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
42be7398
JO
786 /* use of precise requires exclude_guest */
787 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
905f5ee2
JO
788 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
789 TEST_ASSERT_VAL("wrong precise_ip", evsel->attr.precise_ip == 2);
790 TEST_ASSERT_VAL("wrong leader", evsel->leader == leader);
8d7d8474 791 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 1);
a9f93f97 792 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
905f5ee2
JO
793
794 return 0;
795}
796
1d037ca1 797static int test__group5(struct perf_evlist *evlist __maybe_unused)
905f5ee2
JO
798{
799 struct perf_evsel *evsel, *leader;
800
801 TEST_ASSERT_VAL("wrong number of entries", 5 == evlist->nr_entries);
8d7d8474 802 TEST_ASSERT_VAL("wrong number of groups", 2 == evlist->nr_groups);
905f5ee2
JO
803
804 /* cycles + G */
0c21f736 805 evsel = leader = perf_evlist__first(evlist);
905f5ee2
JO
806 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
807 TEST_ASSERT_VAL("wrong config",
808 PERF_COUNT_HW_CPU_CYCLES == evsel->attr.config);
809 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
810 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
811 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
812 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
813 TEST_ASSERT_VAL("wrong exclude host", evsel->attr.exclude_host);
814 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
815 TEST_ASSERT_VAL("wrong group name", !evsel->group_name);
823254ed 816 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
8d7d8474
NK
817 TEST_ASSERT_VAL("wrong nr_members", evsel->nr_members == 2);
818 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 0);
a9f93f97 819 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
905f5ee2
JO
820
821 /* instructions + G */
0c21f736 822 evsel = perf_evsel__next(evsel);
905f5ee2
JO
823 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
824 TEST_ASSERT_VAL("wrong config",
825 PERF_COUNT_HW_INSTRUCTIONS == evsel->attr.config);
826 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
827 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
828 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
829 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
830 TEST_ASSERT_VAL("wrong exclude host", evsel->attr.exclude_host);
831 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
832 TEST_ASSERT_VAL("wrong leader", evsel->leader == leader);
8d7d8474 833 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 1);
a9f93f97 834 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
905f5ee2
JO
835
836 /* cycles:G */
0c21f736 837 evsel = leader = perf_evsel__next(evsel);
905f5ee2
JO
838 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
839 TEST_ASSERT_VAL("wrong config",
840 PERF_COUNT_HW_CPU_CYCLES == evsel->attr.config);
841 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
842 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
843 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
844 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
845 TEST_ASSERT_VAL("wrong exclude host", evsel->attr.exclude_host);
846 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
847 TEST_ASSERT_VAL("wrong group name", !evsel->group_name);
823254ed 848 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
8d7d8474
NK
849 TEST_ASSERT_VAL("wrong nr_members", evsel->nr_members == 2);
850 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 0);
a9f93f97 851 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
905f5ee2
JO
852
853 /* instructions:G */
0c21f736 854 evsel = perf_evsel__next(evsel);
905f5ee2
JO
855 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
856 TEST_ASSERT_VAL("wrong config",
857 PERF_COUNT_HW_INSTRUCTIONS == evsel->attr.config);
858 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
859 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
860 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
861 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
862 TEST_ASSERT_VAL("wrong exclude host", evsel->attr.exclude_host);
863 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
864 TEST_ASSERT_VAL("wrong leader", evsel->leader == leader);
8d7d8474 865 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 1);
905f5ee2
JO
866
867 /* cycles */
0c21f736 868 evsel = perf_evsel__next(evsel);
905f5ee2
JO
869 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
870 TEST_ASSERT_VAL("wrong config",
871 PERF_COUNT_HW_CPU_CYCLES == evsel->attr.config);
872 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
873 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
874 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
875 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
876 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
877 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
823254ed 878 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
905f5ee2
JO
879
880 return 0;
881}
882
5a30a99f
JO
883static int test__group_gh1(struct perf_evlist *evlist)
884{
885 struct perf_evsel *evsel, *leader;
886
887 TEST_ASSERT_VAL("wrong number of entries", 2 == evlist->nr_entries);
888 TEST_ASSERT_VAL("wrong number of groups", 1 == evlist->nr_groups);
889
890 /* cycles + :H group modifier */
891 evsel = leader = perf_evlist__first(evlist);
892 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
893 TEST_ASSERT_VAL("wrong config",
894 PERF_COUNT_HW_CPU_CYCLES == evsel->attr.config);
895 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
896 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
897 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
898 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
899 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
900 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
901 TEST_ASSERT_VAL("wrong group name", !evsel->group_name);
902 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
903 TEST_ASSERT_VAL("wrong nr_members", evsel->nr_members == 2);
904 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 0);
905
906 /* cache-misses:G + :H group modifier */
907 evsel = perf_evsel__next(evsel);
908 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
909 TEST_ASSERT_VAL("wrong config",
910 PERF_COUNT_HW_CACHE_MISSES == evsel->attr.config);
911 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
912 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
913 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
914 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
915 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
916 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
917 TEST_ASSERT_VAL("wrong leader", evsel->leader == leader);
918 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 1);
919
920 return 0;
921}
922
923static int test__group_gh2(struct perf_evlist *evlist)
924{
925 struct perf_evsel *evsel, *leader;
926
927 TEST_ASSERT_VAL("wrong number of entries", 2 == evlist->nr_entries);
928 TEST_ASSERT_VAL("wrong number of groups", 1 == evlist->nr_groups);
929
930 /* cycles + :G group modifier */
931 evsel = leader = perf_evlist__first(evlist);
932 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
933 TEST_ASSERT_VAL("wrong config",
934 PERF_COUNT_HW_CPU_CYCLES == evsel->attr.config);
935 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
936 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
937 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
938 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
939 TEST_ASSERT_VAL("wrong exclude host", evsel->attr.exclude_host);
940 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
941 TEST_ASSERT_VAL("wrong group name", !evsel->group_name);
942 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
943 TEST_ASSERT_VAL("wrong nr_members", evsel->nr_members == 2);
944 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 0);
945
946 /* cache-misses:H + :G group modifier */
947 evsel = perf_evsel__next(evsel);
948 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
949 TEST_ASSERT_VAL("wrong config",
950 PERF_COUNT_HW_CACHE_MISSES == evsel->attr.config);
951 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
952 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
953 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
954 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
955 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
956 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
957 TEST_ASSERT_VAL("wrong leader", evsel->leader == leader);
958 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 1);
959
960 return 0;
961}
962
963static int test__group_gh3(struct perf_evlist *evlist)
964{
965 struct perf_evsel *evsel, *leader;
966
967 TEST_ASSERT_VAL("wrong number of entries", 2 == evlist->nr_entries);
968 TEST_ASSERT_VAL("wrong number of groups", 1 == evlist->nr_groups);
969
970 /* cycles:G + :u group modifier */
971 evsel = leader = perf_evlist__first(evlist);
972 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
973 TEST_ASSERT_VAL("wrong config",
974 PERF_COUNT_HW_CPU_CYCLES == evsel->attr.config);
975 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
976 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
977 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
978 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
979 TEST_ASSERT_VAL("wrong exclude host", evsel->attr.exclude_host);
980 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
981 TEST_ASSERT_VAL("wrong group name", !evsel->group_name);
982 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
983 TEST_ASSERT_VAL("wrong nr_members", evsel->nr_members == 2);
984 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 0);
985
986 /* cache-misses:H + :u group modifier */
987 evsel = perf_evsel__next(evsel);
988 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
989 TEST_ASSERT_VAL("wrong config",
990 PERF_COUNT_HW_CACHE_MISSES == evsel->attr.config);
991 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
992 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
993 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
994 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
995 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
996 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
997 TEST_ASSERT_VAL("wrong leader", evsel->leader == leader);
998 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 1);
999
1000 return 0;
1001}
1002
1003static int test__group_gh4(struct perf_evlist *evlist)
1004{
1005 struct perf_evsel *evsel, *leader;
1006
1007 TEST_ASSERT_VAL("wrong number of entries", 2 == evlist->nr_entries);
1008 TEST_ASSERT_VAL("wrong number of groups", 1 == evlist->nr_groups);
1009
1010 /* cycles:G + :uG group modifier */
1011 evsel = leader = perf_evlist__first(evlist);
1012 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
1013 TEST_ASSERT_VAL("wrong config",
1014 PERF_COUNT_HW_CPU_CYCLES == evsel->attr.config);
1015 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
1016 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
1017 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
1018 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
1019 TEST_ASSERT_VAL("wrong exclude host", evsel->attr.exclude_host);
1020 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
1021 TEST_ASSERT_VAL("wrong group name", !evsel->group_name);
1022 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
1023 TEST_ASSERT_VAL("wrong nr_members", evsel->nr_members == 2);
1024 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 0);
1025
1026 /* cache-misses:H + :uG group modifier */
1027 evsel = perf_evsel__next(evsel);
1028 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
1029 TEST_ASSERT_VAL("wrong config",
1030 PERF_COUNT_HW_CACHE_MISSES == evsel->attr.config);
1031 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
1032 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
1033 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
1034 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
1035 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
1036 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
1037 TEST_ASSERT_VAL("wrong leader", evsel->leader == leader);
1038 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 1);
1039
1040 return 0;
1041}
1042
a9f93f97
JO
1043static int test__leader_sample1(struct perf_evlist *evlist)
1044{
1045 struct perf_evsel *evsel, *leader;
1046
1047 TEST_ASSERT_VAL("wrong number of entries", 3 == evlist->nr_entries);
1048
1049 /* cycles - sampling group leader */
1050 evsel = leader = perf_evlist__first(evlist);
1051 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
1052 TEST_ASSERT_VAL("wrong config",
1053 PERF_COUNT_HW_CPU_CYCLES == evsel->attr.config);
1054 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
1055 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
1056 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
1057 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
1058 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
1059 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
1060 TEST_ASSERT_VAL("wrong group name", !evsel->group_name);
1061 TEST_ASSERT_VAL("wrong leader", evsel->leader == leader);
1062 TEST_ASSERT_VAL("wrong sample_read", evsel->sample_read);
1063
1064 /* cache-misses - not sampling */
1065 evsel = perf_evsel__next(evsel);
1066 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
1067 TEST_ASSERT_VAL("wrong config",
1068 PERF_COUNT_HW_CACHE_MISSES == evsel->attr.config);
1069 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
1070 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
1071 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
1072 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
1073 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
1074 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
1075 TEST_ASSERT_VAL("wrong leader", evsel->leader == leader);
1076 TEST_ASSERT_VAL("wrong sample_read", evsel->sample_read);
1077
1078 /* branch-misses - not sampling */
1079 evsel = perf_evsel__next(evsel);
1080 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
1081 TEST_ASSERT_VAL("wrong config",
1082 PERF_COUNT_HW_BRANCH_MISSES == evsel->attr.config);
1083 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
1084 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
1085 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
1086 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
1087 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
1088 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
1089 TEST_ASSERT_VAL("wrong group name", !evsel->group_name);
1090 TEST_ASSERT_VAL("wrong leader", evsel->leader == leader);
1091 TEST_ASSERT_VAL("wrong sample_read", evsel->sample_read);
1092
1093 return 0;
1094}
1095
1096static int test__leader_sample2(struct perf_evlist *evlist __maybe_unused)
1097{
1098 struct perf_evsel *evsel, *leader;
1099
1100 TEST_ASSERT_VAL("wrong number of entries", 2 == evlist->nr_entries);
1101
1102 /* instructions - sampling group leader */
1103 evsel = leader = perf_evlist__first(evlist);
1104 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
1105 TEST_ASSERT_VAL("wrong config",
1106 PERF_COUNT_HW_INSTRUCTIONS == evsel->attr.config);
1107 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
1108 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
1109 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
1110 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
1111 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
1112 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
1113 TEST_ASSERT_VAL("wrong group name", !evsel->group_name);
1114 TEST_ASSERT_VAL("wrong leader", evsel->leader == leader);
1115 TEST_ASSERT_VAL("wrong sample_read", evsel->sample_read);
1116
1117 /* branch-misses - not sampling */
1118 evsel = perf_evsel__next(evsel);
1119 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
1120 TEST_ASSERT_VAL("wrong config",
1121 PERF_COUNT_HW_BRANCH_MISSES == evsel->attr.config);
1122 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
1123 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
1124 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
1125 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
1126 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
1127 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
1128 TEST_ASSERT_VAL("wrong group name", !evsel->group_name);
1129 TEST_ASSERT_VAL("wrong leader", evsel->leader == leader);
1130 TEST_ASSERT_VAL("wrong sample_read", evsel->sample_read);
1131
1132 return 0;
1133}
1134
c9ee780f
ME
1135static int test__checkevent_pinned_modifier(struct perf_evlist *evlist)
1136{
1137 struct perf_evsel *evsel = perf_evlist__first(evlist);
1138
1139 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
1140 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
1141 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
1142 TEST_ASSERT_VAL("wrong precise_ip", evsel->attr.precise_ip);
1143 TEST_ASSERT_VAL("wrong pinned", evsel->attr.pinned);
1144
1145 return test__checkevent_symbolic_name(evlist);
1146}
1147
1148static int test__pinned_group(struct perf_evlist *evlist)
1149{
1150 struct perf_evsel *evsel, *leader;
1151
1152 TEST_ASSERT_VAL("wrong number of entries", 3 == evlist->nr_entries);
1153
1154 /* cycles - group leader */
1155 evsel = leader = perf_evlist__first(evlist);
1156 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
1157 TEST_ASSERT_VAL("wrong config",
1158 PERF_COUNT_HW_CPU_CYCLES == evsel->attr.config);
1159 TEST_ASSERT_VAL("wrong group name", !evsel->group_name);
1160 TEST_ASSERT_VAL("wrong leader", evsel->leader == leader);
1161 TEST_ASSERT_VAL("wrong pinned", evsel->attr.pinned);
1162
1163 /* cache-misses - can not be pinned, but will go on with the leader */
1164 evsel = perf_evsel__next(evsel);
1165 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
1166 TEST_ASSERT_VAL("wrong config",
1167 PERF_COUNT_HW_CACHE_MISSES == evsel->attr.config);
1168 TEST_ASSERT_VAL("wrong pinned", !evsel->attr.pinned);
1169
1170 /* branch-misses - ditto */
1171 evsel = perf_evsel__next(evsel);
1172 TEST_ASSERT_VAL("wrong config",
1173 PERF_COUNT_HW_BRANCH_MISSES == evsel->attr.config);
1174 TEST_ASSERT_VAL("wrong pinned", !evsel->attr.pinned);
1175
1176 return 0;
1177}
1178
ec32398c
JS
1179static int test__checkevent_breakpoint_len(struct perf_evlist *evlist)
1180{
1181 struct perf_evsel *evsel = perf_evlist__first(evlist);
1182
1183 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
1184 TEST_ASSERT_VAL("wrong type", PERF_TYPE_BREAKPOINT == evsel->attr.type);
1185 TEST_ASSERT_VAL("wrong config", 0 == evsel->attr.config);
1186 TEST_ASSERT_VAL("wrong bp_type", (HW_BREAKPOINT_R | HW_BREAKPOINT_W) ==
1187 evsel->attr.bp_type);
1188 TEST_ASSERT_VAL("wrong bp_len", HW_BREAKPOINT_LEN_1 ==
1189 evsel->attr.bp_len);
1190
1191 return 0;
1192}
1193
1194static int test__checkevent_breakpoint_len_w(struct perf_evlist *evlist)
1195{
1196 struct perf_evsel *evsel = perf_evlist__first(evlist);
1197
1198 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
1199 TEST_ASSERT_VAL("wrong type", PERF_TYPE_BREAKPOINT == evsel->attr.type);
1200 TEST_ASSERT_VAL("wrong config", 0 == evsel->attr.config);
1201 TEST_ASSERT_VAL("wrong bp_type", HW_BREAKPOINT_W ==
1202 evsel->attr.bp_type);
1203 TEST_ASSERT_VAL("wrong bp_len", HW_BREAKPOINT_LEN_2 ==
1204 evsel->attr.bp_len);
1205
1206 return 0;
1207}
1208
1209static int
1210test__checkevent_breakpoint_len_rw_modifier(struct perf_evlist *evlist)
1211{
1212 struct perf_evsel *evsel = perf_evlist__first(evlist);
1213
1214 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
1215 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
1216 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
1217 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
1218
1219 return test__checkevent_breakpoint_rw(evlist);
1220}
1221
82ce75d9
JO
1222static int count_tracepoints(void)
1223{
1224 char events_path[PATH_MAX];
1225 struct dirent *events_ent;
23773ca1 1226 const char *mountpoint;
82ce75d9
JO
1227 DIR *events_dir;
1228 int cnt = 0;
1229
23773ca1
SRRH
1230 mountpoint = tracefs_find_mountpoint();
1231 if (mountpoint) {
1232 scnprintf(events_path, PATH_MAX, "%s/events",
1233 mountpoint);
1234 } else {
1235 mountpoint = debugfs_find_mountpoint();
1236 scnprintf(events_path, PATH_MAX, "%s/tracing/events",
1237 mountpoint);
1238 }
82ce75d9
JO
1239
1240 events_dir = opendir(events_path);
1241
1242 TEST_ASSERT_VAL("Can't open events dir", events_dir);
1243
1244 while ((events_ent = readdir(events_dir))) {
1245 char sys_path[PATH_MAX];
1246 struct dirent *sys_ent;
1247 DIR *sys_dir;
1248
1249 if (!strcmp(events_ent->d_name, ".")
1250 || !strcmp(events_ent->d_name, "..")
1251 || !strcmp(events_ent->d_name, "enable")
1252 || !strcmp(events_ent->d_name, "header_event")
1253 || !strcmp(events_ent->d_name, "header_page"))
1254 continue;
1255
1256 scnprintf(sys_path, PATH_MAX, "%s/%s",
1257 events_path, events_ent->d_name);
1258
1259 sys_dir = opendir(sys_path);
1260 TEST_ASSERT_VAL("Can't open sys dir", sys_dir);
1261
1262 while ((sys_ent = readdir(sys_dir))) {
1263 if (!strcmp(sys_ent->d_name, ".")
1264 || !strcmp(sys_ent->d_name, "..")
1265 || !strcmp(sys_ent->d_name, "enable")
1266 || !strcmp(sys_ent->d_name, "filter"))
1267 continue;
1268
1269 cnt++;
1270 }
1271
1272 closedir(sys_dir);
1273 }
1274
1275 closedir(events_dir);
1276 return cnt;
1277}
1278
1279static int test__all_tracepoints(struct perf_evlist *evlist)
1280{
1281 TEST_ASSERT_VAL("wrong events count",
1282 count_tracepoints() == evlist->nr_entries);
1283
1284 return test__checkevent_tracepoint_multi(evlist);
1285}
1286
23b6339b 1287struct evlist_test {
f50246e2
JO
1288 const char *name;
1289 __u32 type;
615b8f99 1290 const int id;
f50246e2
JO
1291 int (*check)(struct perf_evlist *evlist);
1292};
1293
23b6339b 1294static struct evlist_test test__events[] = {
615b8f99 1295 {
f50246e2
JO
1296 .name = "syscalls:sys_enter_open",
1297 .check = test__checkevent_tracepoint,
615b8f99 1298 .id = 0,
f50246e2 1299 },
615b8f99 1300 {
f50246e2
JO
1301 .name = "syscalls:*",
1302 .check = test__checkevent_tracepoint_multi,
615b8f99 1303 .id = 1,
f50246e2 1304 },
615b8f99 1305 {
f50246e2
JO
1306 .name = "r1a",
1307 .check = test__checkevent_raw,
615b8f99 1308 .id = 2,
f50246e2 1309 },
615b8f99 1310 {
f50246e2
JO
1311 .name = "1:1",
1312 .check = test__checkevent_numeric,
615b8f99 1313 .id = 3,
f50246e2 1314 },
615b8f99 1315 {
f50246e2
JO
1316 .name = "instructions",
1317 .check = test__checkevent_symbolic_name,
615b8f99 1318 .id = 4,
f50246e2 1319 },
615b8f99 1320 {
f50246e2
JO
1321 .name = "cycles/period=100000,config2/",
1322 .check = test__checkevent_symbolic_name_config,
615b8f99 1323 .id = 5,
f50246e2 1324 },
615b8f99 1325 {
f50246e2
JO
1326 .name = "faults",
1327 .check = test__checkevent_symbolic_alias,
615b8f99 1328 .id = 6,
f50246e2 1329 },
615b8f99 1330 {
f50246e2
JO
1331 .name = "L1-dcache-load-miss",
1332 .check = test__checkevent_genhw,
615b8f99 1333 .id = 7,
f50246e2 1334 },
615b8f99 1335 {
f50246e2
JO
1336 .name = "mem:0",
1337 .check = test__checkevent_breakpoint,
615b8f99 1338 .id = 8,
f50246e2 1339 },
615b8f99 1340 {
f50246e2
JO
1341 .name = "mem:0:x",
1342 .check = test__checkevent_breakpoint_x,
615b8f99 1343 .id = 9,
f50246e2 1344 },
615b8f99 1345 {
f50246e2
JO
1346 .name = "mem:0:r",
1347 .check = test__checkevent_breakpoint_r,
615b8f99 1348 .id = 10,
f50246e2 1349 },
615b8f99 1350 {
f50246e2
JO
1351 .name = "mem:0:w",
1352 .check = test__checkevent_breakpoint_w,
615b8f99 1353 .id = 11,
f50246e2 1354 },
615b8f99 1355 {
f50246e2
JO
1356 .name = "syscalls:sys_enter_open:k",
1357 .check = test__checkevent_tracepoint_modifier,
615b8f99 1358 .id = 12,
f50246e2 1359 },
615b8f99 1360 {
f50246e2
JO
1361 .name = "syscalls:*:u",
1362 .check = test__checkevent_tracepoint_multi_modifier,
615b8f99 1363 .id = 13,
f50246e2 1364 },
615b8f99 1365 {
f50246e2
JO
1366 .name = "r1a:kp",
1367 .check = test__checkevent_raw_modifier,
615b8f99 1368 .id = 14,
f50246e2 1369 },
615b8f99 1370 {
f50246e2
JO
1371 .name = "1:1:hp",
1372 .check = test__checkevent_numeric_modifier,
615b8f99 1373 .id = 15,
f50246e2 1374 },
615b8f99 1375 {
f50246e2
JO
1376 .name = "instructions:h",
1377 .check = test__checkevent_symbolic_name_modifier,
615b8f99 1378 .id = 16,
f50246e2 1379 },
615b8f99 1380 {
f50246e2
JO
1381 .name = "faults:u",
1382 .check = test__checkevent_symbolic_alias_modifier,
615b8f99 1383 .id = 17,
f50246e2 1384 },
615b8f99 1385 {
f50246e2
JO
1386 .name = "L1-dcache-load-miss:kp",
1387 .check = test__checkevent_genhw_modifier,
615b8f99 1388 .id = 18,
f50246e2 1389 },
615b8f99 1390 {
f50246e2
JO
1391 .name = "mem:0:u",
1392 .check = test__checkevent_breakpoint_modifier,
615b8f99 1393 .id = 19,
f50246e2 1394 },
615b8f99 1395 {
f50246e2
JO
1396 .name = "mem:0:x:k",
1397 .check = test__checkevent_breakpoint_x_modifier,
615b8f99 1398 .id = 20,
f50246e2 1399 },
615b8f99 1400 {
f50246e2
JO
1401 .name = "mem:0:r:hp",
1402 .check = test__checkevent_breakpoint_r_modifier,
615b8f99 1403 .id = 21,
f50246e2 1404 },
615b8f99 1405 {
f50246e2
JO
1406 .name = "mem:0:w:up",
1407 .check = test__checkevent_breakpoint_w_modifier,
615b8f99 1408 .id = 22,
f50246e2 1409 },
615b8f99 1410 {
f50246e2
JO
1411 .name = "r1,syscalls:sys_enter_open:k,1:1:hp",
1412 .check = test__checkevent_list,
615b8f99 1413 .id = 23,
f50246e2 1414 },
615b8f99 1415 {
f50246e2
JO
1416 .name = "instructions:G",
1417 .check = test__checkevent_exclude_host_modifier,
615b8f99 1418 .id = 24,
f50246e2 1419 },
615b8f99 1420 {
f50246e2
JO
1421 .name = "instructions:H",
1422 .check = test__checkevent_exclude_guest_modifier,
615b8f99 1423 .id = 25,
f50246e2 1424 },
615b8f99 1425 {
7582732f
JO
1426 .name = "mem:0:rw",
1427 .check = test__checkevent_breakpoint_rw,
615b8f99 1428 .id = 26,
7582732f 1429 },
615b8f99 1430 {
7582732f
JO
1431 .name = "mem:0:rw:kp",
1432 .check = test__checkevent_breakpoint_rw_modifier,
615b8f99 1433 .id = 27,
7582732f 1434 },
615b8f99 1435 {
905f5ee2
JO
1436 .name = "{instructions:k,cycles:upp}",
1437 .check = test__group1,
615b8f99 1438 .id = 28,
905f5ee2 1439 },
615b8f99 1440 {
905f5ee2
JO
1441 .name = "{faults:k,cache-references}:u,cycles:k",
1442 .check = test__group2,
615b8f99 1443 .id = 29,
905f5ee2 1444 },
615b8f99 1445 {
905f5ee2
JO
1446 .name = "group1{syscalls:sys_enter_open:H,cycles:kppp},group2{cycles,1:3}:G,instructions:u",
1447 .check = test__group3,
615b8f99 1448 .id = 30,
905f5ee2 1449 },
615b8f99 1450 {
905f5ee2
JO
1451 .name = "{cycles:u,instructions:kp}:p",
1452 .check = test__group4,
615b8f99 1453 .id = 31,
905f5ee2 1454 },
615b8f99 1455 {
905f5ee2
JO
1456 .name = "{cycles,instructions}:G,{cycles:G,instructions:G},cycles",
1457 .check = test__group5,
615b8f99 1458 .id = 32,
905f5ee2 1459 },
615b8f99 1460 {
82ce75d9
JO
1461 .name = "*:*",
1462 .check = test__all_tracepoints,
615b8f99 1463 .id = 33,
82ce75d9 1464 },
615b8f99 1465 {
5a30a99f
JO
1466 .name = "{cycles,cache-misses:G}:H",
1467 .check = test__group_gh1,
615b8f99 1468 .id = 34,
5a30a99f 1469 },
615b8f99 1470 {
5a30a99f
JO
1471 .name = "{cycles,cache-misses:H}:G",
1472 .check = test__group_gh2,
615b8f99 1473 .id = 35,
5a30a99f 1474 },
615b8f99 1475 {
5a30a99f
JO
1476 .name = "{cycles:G,cache-misses:H}:u",
1477 .check = test__group_gh3,
615b8f99 1478 .id = 36,
5a30a99f 1479 },
615b8f99 1480 {
5a30a99f
JO
1481 .name = "{cycles:G,cache-misses:H}:uG",
1482 .check = test__group_gh4,
615b8f99 1483 .id = 37,
5a30a99f 1484 },
615b8f99 1485 {
a9f93f97
JO
1486 .name = "{cycles,cache-misses,branch-misses}:S",
1487 .check = test__leader_sample1,
615b8f99 1488 .id = 38,
a9f93f97 1489 },
615b8f99 1490 {
a9f93f97
JO
1491 .name = "{instructions,branch-misses}:Su",
1492 .check = test__leader_sample2,
615b8f99 1493 .id = 39,
a9f93f97 1494 },
615b8f99 1495 {
c9ee780f
ME
1496 .name = "instructions:uDp",
1497 .check = test__checkevent_pinned_modifier,
615b8f99 1498 .id = 40,
c9ee780f 1499 },
615b8f99 1500 {
c9ee780f
ME
1501 .name = "{cycles,cache-misses,branch-misses}:D",
1502 .check = test__pinned_group,
615b8f99 1503 .id = 41,
c9ee780f 1504 },
ec32398c
JS
1505 {
1506 .name = "mem:0/1",
1507 .check = test__checkevent_breakpoint_len,
1508 .id = 42,
1509 },
1510 {
1511 .name = "mem:0/2:w",
1512 .check = test__checkevent_breakpoint_len_w,
1513 .id = 43,
1514 },
1515 {
1516 .name = "mem:0/4:rw:u",
1517 .check = test__checkevent_breakpoint_len_rw_modifier,
1518 .id = 44
1519 },
c0bc8c6d
AY
1520#if defined(__s390x__)
1521 {
1522 .name = "kvm-s390:kvm_s390_create_vm",
1523 .check = test__checkevent_tracepoint,
1524 .id = 100,
1525 },
1526#endif
a1e12da4
JO
1527 {
1528 .name = "instructions:I",
1529 .check = test__checkevent_exclude_idle_modifier,
1530 .id = 45,
1531 },
1532 {
1533 .name = "instructions:kIG",
1534 .check = test__checkevent_exclude_idle_modifier_1,
1535 .id = 46,
1536 },
f50246e2
JO
1537};
1538
23b6339b 1539static struct evlist_test test__events_pmu[] = {
615b8f99 1540 {
f50246e2
JO
1541 .name = "cpu/config=10,config1,config2=3,period=1000/u",
1542 .check = test__checkevent_pmu,
615b8f99 1543 .id = 0,
f50246e2 1544 },
615b8f99 1545 {
6b5fc39b
JO
1546 .name = "cpu/config=1,name=krava/u,cpu/config=2/u",
1547 .check = test__checkevent_pmu_name,
615b8f99 1548 .id = 1,
6b5fc39b 1549 },
f50246e2
JO
1550};
1551
23b6339b 1552struct terms_test {
4429392e
JO
1553 const char *str;
1554 __u32 type;
1555 int (*check)(struct list_head *terms);
1556};
1557
23b6339b 1558static struct terms_test test__terms[] = {
4429392e
JO
1559 [0] = {
1560 .str = "config=10,config1,config2=3,umask=1",
1561 .check = test__checkterms_simple,
1562 },
1563};
1564
23b6339b 1565static int test_event(struct evlist_test *e)
f50246e2
JO
1566{
1567 struct perf_evlist *evlist;
1568 int ret;
1569
334fe7a3 1570 evlist = perf_evlist__new();
f50246e2
JO
1571 if (evlist == NULL)
1572 return -ENOMEM;
1573
d8f7bbc9 1574 ret = parse_events(evlist, e->name);
f50246e2
JO
1575 if (ret) {
1576 pr_debug("failed to parse event '%s', err %d\n",
1577 e->name, ret);
2d4352c0
ACM
1578 } else {
1579 ret = e->check(evlist);
f50246e2 1580 }
48000a1a 1581
f50246e2
JO
1582 perf_evlist__delete(evlist);
1583
1584 return ret;
1585}
1586
23b6339b 1587static int test_events(struct evlist_test *events, unsigned cnt)
f50246e2 1588{
9bfbbc6d 1589 int ret1, ret2 = 0;
f50246e2
JO
1590 unsigned i;
1591
1592 for (i = 0; i < cnt; i++) {
23b6339b 1593 struct evlist_test *e = &events[i];
f50246e2 1594
615b8f99 1595 pr_debug("running test %d '%s'\n", e->id, e->name);
9bfbbc6d
RR
1596 ret1 = test_event(e);
1597 if (ret1)
1598 ret2 = ret1;
4429392e
JO
1599 }
1600
9bfbbc6d 1601 return ret2;
4429392e
JO
1602}
1603
23b6339b 1604static int test_term(struct terms_test *t)
4429392e 1605{
c549aca5 1606 struct list_head terms;
4429392e
JO
1607 int ret;
1608
c549aca5 1609 INIT_LIST_HEAD(&terms);
4429392e 1610
c549aca5 1611 ret = parse_events_terms(&terms, t->str);
4429392e
JO
1612 if (ret) {
1613 pr_debug("failed to parse terms '%s', err %d\n",
1614 t->str , ret);
1615 return ret;
1616 }
1617
c549aca5
DA
1618 ret = t->check(&terms);
1619 parse_events__free_terms(&terms);
4429392e
JO
1620
1621 return ret;
1622}
1623
23b6339b 1624static int test_terms(struct terms_test *terms, unsigned cnt)
4429392e
JO
1625{
1626 int ret = 0;
1627 unsigned i;
1628
1629 for (i = 0; i < cnt; i++) {
23b6339b 1630 struct terms_test *t = &terms[i];
4429392e
JO
1631
1632 pr_debug("running test %d '%s'\n", i, t->str);
1633 ret = test_term(t);
f50246e2
JO
1634 if (ret)
1635 break;
1636 }
1637
1638 return ret;
1639}
1640
1641static int test_pmu(void)
1642{
1643 struct stat st;
1644 char path[PATH_MAX];
1645 int ret;
1646
1647 snprintf(path, PATH_MAX, "%s/bus/event_source/devices/cpu/format/",
cf38fada 1648 sysfs__mountpoint());
f50246e2
JO
1649
1650 ret = stat(path, &st);
1651 if (ret)
3fd44cd4 1652 pr_debug("omitting PMU cpu tests\n");
f50246e2
JO
1653 return !ret;
1654}
1655
3f3a2064
JO
1656static int test_pmu_events(void)
1657{
1658 struct stat st;
1659 char path[PATH_MAX];
1660 struct dirent *ent;
1661 DIR *dir;
1662 int ret;
1663
1664 snprintf(path, PATH_MAX, "%s/bus/event_source/devices/cpu/events/",
cf38fada 1665 sysfs__mountpoint());
3f3a2064
JO
1666
1667 ret = stat(path, &st);
1668 if (ret) {
a895d57d 1669 pr_debug("omitting PMU cpu events tests\n");
3f3a2064
JO
1670 return 0;
1671 }
1672
1673 dir = opendir(path);
1674 if (!dir) {
1675 pr_debug("can't open pmu event dir");
1676 return -1;
1677 }
1678
1679 while (!ret && (ent = readdir(dir))) {
1680#define MAX_NAME 100
23b6339b 1681 struct evlist_test e;
3f3a2064
JO
1682 char name[MAX_NAME];
1683
1684 if (!strcmp(ent->d_name, ".") ||
1685 !strcmp(ent->d_name, ".."))
1686 continue;
1687
1688 snprintf(name, MAX_NAME, "cpu/event=%s/u", ent->d_name);
1689
1690 e.name = name;
1691 e.check = test__checkevent_pmu_events;
1692
1693 ret = test_event(&e);
ffe59788
KL
1694 if (ret)
1695 break;
1696 snprintf(name, MAX_NAME, "%s:u,cpu/event=%s/u", ent->d_name, ent->d_name);
1697 e.name = name;
1698 e.check = test__checkevent_pmu_events_mix;
1699 ret = test_event(&e);
3f3a2064
JO
1700#undef MAX_NAME
1701 }
1702
1703 closedir(dir);
1704 return ret;
1705}
1706
c81251e8 1707int test__parse_events(void)
f50246e2 1708{
9bfbbc6d 1709 int ret1, ret2 = 0;
f50246e2 1710
ebf124ff
JO
1711#define TEST_EVENTS(tests) \
1712do { \
9bfbbc6d
RR
1713 ret1 = test_events(tests, ARRAY_SIZE(tests)); \
1714 if (!ret2) \
1715 ret2 = ret1; \
ebf124ff 1716} while (0)
4429392e 1717
ebf124ff 1718 TEST_EVENTS(test__events);
4429392e 1719
ebf124ff
JO
1720 if (test_pmu())
1721 TEST_EVENTS(test__events_pmu);
f50246e2 1722
3f3a2064
JO
1723 if (test_pmu()) {
1724 int ret = test_pmu_events();
1725 if (ret)
1726 return ret;
1727 }
1728
9bfbbc6d
RR
1729 ret1 = test_terms(test__terms, ARRAY_SIZE(test__terms));
1730 if (!ret2)
1731 ret2 = ret1;
1732
1733 return ret2;
f50246e2 1734}
This page took 0.221078 seconds and 5 git commands to generate.