2 #include "parse-events.h"
6 #include <api/fs/tracefs.h>
7 #include <api/fs/debugfs.h>
10 #include <linux/hw_breakpoint.h>
12 #define PERF_TP_SAMPLE_TYPE (PERF_SAMPLE_RAW | PERF_SAMPLE_TIME | \
13 PERF_SAMPLE_CPU | PERF_SAMPLE_PERIOD)
15 static int test__checkevent_tracepoint(struct perf_evlist
*evlist
)
17 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
19 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist
->nr_entries
);
20 TEST_ASSERT_VAL("wrong number of groups", 0 == evlist
->nr_groups
);
21 TEST_ASSERT_VAL("wrong type", PERF_TYPE_TRACEPOINT
== evsel
->attr
.type
);
22 TEST_ASSERT_VAL("wrong sample_type",
23 PERF_TP_SAMPLE_TYPE
== evsel
->attr
.sample_type
);
24 TEST_ASSERT_VAL("wrong sample_period", 1 == evsel
->attr
.sample_period
);
28 static int test__checkevent_tracepoint_multi(struct perf_evlist
*evlist
)
30 struct perf_evsel
*evsel
;
32 TEST_ASSERT_VAL("wrong number of entries", evlist
->nr_entries
> 1);
33 TEST_ASSERT_VAL("wrong number of groups", 0 == evlist
->nr_groups
);
35 evlist__for_each(evlist
, evsel
) {
36 TEST_ASSERT_VAL("wrong type",
37 PERF_TYPE_TRACEPOINT
== evsel
->attr
.type
);
38 TEST_ASSERT_VAL("wrong sample_type",
39 PERF_TP_SAMPLE_TYPE
== evsel
->attr
.sample_type
);
40 TEST_ASSERT_VAL("wrong sample_period",
41 1 == evsel
->attr
.sample_period
);
46 static int test__checkevent_raw(struct perf_evlist
*evlist
)
48 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
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
);
56 static int test__checkevent_numeric(struct perf_evlist
*evlist
)
58 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
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
);
66 static int test__checkevent_symbolic_name(struct perf_evlist
*evlist
)
68 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
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
);
77 static int test__checkevent_symbolic_name_config(struct perf_evlist
*evlist
)
79 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
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
);
94 static int test__checkevent_symbolic_alias(struct perf_evlist
*evlist
)
96 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
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
);
105 static int test__checkevent_genhw(struct perf_evlist
*evlist
)
107 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
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
);
115 static int test__checkevent_breakpoint(struct perf_evlist
*evlist
)
117 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
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
==
129 static int test__checkevent_breakpoint_x(struct perf_evlist
*evlist
)
131 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
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
);
142 static int test__checkevent_breakpoint_r(struct perf_evlist
*evlist
)
144 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
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
);
157 static int test__checkevent_breakpoint_w(struct perf_evlist
*evlist
)
159 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
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
);
172 static int test__checkevent_breakpoint_rw(struct perf_evlist
*evlist
)
174 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
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
);
187 static int test__checkevent_tracepoint_modifier(struct perf_evlist
*evlist
)
189 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
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
);
196 return test__checkevent_tracepoint(evlist
);
200 test__checkevent_tracepoint_multi_modifier(struct perf_evlist
*evlist
)
202 struct perf_evsel
*evsel
;
204 TEST_ASSERT_VAL("wrong number of entries", evlist
->nr_entries
> 1);
206 evlist__for_each(evlist
, evsel
) {
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
);
215 return test__checkevent_tracepoint_multi(evlist
);
218 static int test__checkevent_raw_modifier(struct perf_evlist
*evlist
)
220 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
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
);
227 return test__checkevent_raw(evlist
);
230 static int test__checkevent_numeric_modifier(struct perf_evlist
*evlist
)
232 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
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
);
239 return test__checkevent_numeric(evlist
);
242 static int test__checkevent_symbolic_name_modifier(struct perf_evlist
*evlist
)
244 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
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
);
251 return test__checkevent_symbolic_name(evlist
);
254 static int test__checkevent_exclude_host_modifier(struct perf_evlist
*evlist
)
256 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
258 TEST_ASSERT_VAL("wrong exclude guest", !evsel
->attr
.exclude_guest
);
259 TEST_ASSERT_VAL("wrong exclude host", evsel
->attr
.exclude_host
);
261 return test__checkevent_symbolic_name(evlist
);
264 static int test__checkevent_exclude_guest_modifier(struct perf_evlist
*evlist
)
266 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
268 TEST_ASSERT_VAL("wrong exclude guest", evsel
->attr
.exclude_guest
);
269 TEST_ASSERT_VAL("wrong exclude host", !evsel
->attr
.exclude_host
);
271 return test__checkevent_symbolic_name(evlist
);
274 static int test__checkevent_symbolic_alias_modifier(struct perf_evlist
*evlist
)
276 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
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
);
283 return test__checkevent_symbolic_alias(evlist
);
286 static int test__checkevent_genhw_modifier(struct perf_evlist
*evlist
)
288 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
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
);
295 return test__checkevent_genhw(evlist
);
298 static int test__checkevent_exclude_idle_modifier(struct perf_evlist
*evlist
)
300 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
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
);
310 return test__checkevent_symbolic_name(evlist
);
313 static int test__checkevent_exclude_idle_modifier_1(struct perf_evlist
*evlist
)
315 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
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
);
325 return test__checkevent_symbolic_name(evlist
);
328 static int test__checkevent_breakpoint_modifier(struct perf_evlist
*evlist
)
330 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
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
);
337 TEST_ASSERT_VAL("wrong name",
338 !strcmp(perf_evsel__name(evsel
), "mem:0:u"));
340 return test__checkevent_breakpoint(evlist
);
343 static int test__checkevent_breakpoint_x_modifier(struct perf_evlist
*evlist
)
345 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
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
);
351 TEST_ASSERT_VAL("wrong name",
352 !strcmp(perf_evsel__name(evsel
), "mem:0:x:k"));
354 return test__checkevent_breakpoint_x(evlist
);
357 static int test__checkevent_breakpoint_r_modifier(struct perf_evlist
*evlist
)
359 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
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
);
365 TEST_ASSERT_VAL("wrong name",
366 !strcmp(perf_evsel__name(evsel
), "mem:0:r:hp"));
368 return test__checkevent_breakpoint_r(evlist
);
371 static int test__checkevent_breakpoint_w_modifier(struct perf_evlist
*evlist
)
373 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
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
);
379 TEST_ASSERT_VAL("wrong name",
380 !strcmp(perf_evsel__name(evsel
), "mem:0:w:up"));
382 return test__checkevent_breakpoint_w(evlist
);
385 static int test__checkevent_breakpoint_rw_modifier(struct perf_evlist
*evlist
)
387 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
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
);
393 TEST_ASSERT_VAL("wrong name",
394 !strcmp(perf_evsel__name(evsel
), "mem:0:rw:kp"));
396 return test__checkevent_breakpoint_rw(evlist
);
399 static int test__checkevent_pmu(struct perf_evlist
*evlist
)
402 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
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
);
414 static int test__checkevent_list(struct perf_evlist
*evlist
)
416 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
418 TEST_ASSERT_VAL("wrong number of entries", 3 == evlist
->nr_entries
);
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
);
430 /* syscalls:sys_enter_open:k */
431 evsel
= perf_evsel__next(evsel
);
432 TEST_ASSERT_VAL("wrong type", PERF_TYPE_TRACEPOINT
== evsel
->attr
.type
);
433 TEST_ASSERT_VAL("wrong sample_type",
434 PERF_TP_SAMPLE_TYPE
== evsel
->attr
.sample_type
);
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
);
442 evsel
= perf_evsel__next(evsel
);
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
);
453 static int test__checkevent_pmu_name(struct perf_evlist
*evlist
)
455 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
457 /* cpu/config=1,name=krava/u */
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
);
461 TEST_ASSERT_VAL("wrong name", !strcmp(perf_evsel__name(evsel
), "krava"));
463 /* cpu/config=2/u" */
464 evsel
= perf_evsel__next(evsel
);
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
);
468 TEST_ASSERT_VAL("wrong name",
469 !strcmp(perf_evsel__name(evsel
), "cpu/config=2/u"));
474 static int test__checkevent_pmu_events(struct perf_evlist
*evlist
)
476 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
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
);
486 TEST_ASSERT_VAL("wrong pinned", !evsel
->attr
.pinned
);
492 static int test__checkevent_pmu_events_mix(struct perf_evlist
*evlist
)
494 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
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
);
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
);
521 static int test__checkterms_simple(struct list_head
*terms
)
523 struct parse_events_term
*term
;
526 term
= list_entry(terms
->next
, struct parse_events_term
, list
);
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
);
535 term
= list_entry(term
->list
.next
, struct parse_events_term
, list
);
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
);
544 term
= list_entry(term
->list
.next
, struct parse_events_term
, list
);
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
);
553 term
= list_entry(term
->list
.next
, struct parse_events_term
, list
);
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"));
564 static int test__group1(struct perf_evlist
*evlist
)
566 struct perf_evsel
*evsel
, *leader
;
568 TEST_ASSERT_VAL("wrong number of entries", 2 == evlist
->nr_entries
);
569 TEST_ASSERT_VAL("wrong number of groups", 1 == evlist
->nr_groups
);
572 evsel
= leader
= perf_evlist__first(evlist
);
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
);
582 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel
));
583 TEST_ASSERT_VAL("wrong nr_members", evsel
->nr_members
== 2);
584 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel
) == 0);
585 TEST_ASSERT_VAL("wrong sample_read", !evsel
->sample_read
);
588 evsel
= perf_evsel__next(evsel
);
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
);
595 /* use of precise requires exclude_guest */
596 TEST_ASSERT_VAL("wrong exclude guest", evsel
->attr
.exclude_guest
);
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
);
600 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel
) == 1);
601 TEST_ASSERT_VAL("wrong sample_read", !evsel
->sample_read
);
606 static int test__group2(struct perf_evlist
*evlist
)
608 struct perf_evsel
*evsel
, *leader
;
610 TEST_ASSERT_VAL("wrong number of entries", 3 == evlist
->nr_entries
);
611 TEST_ASSERT_VAL("wrong number of groups", 1 == evlist
->nr_groups
);
613 /* faults + :ku modifier */
614 evsel
= leader
= perf_evlist__first(evlist
);
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
);
624 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel
));
625 TEST_ASSERT_VAL("wrong nr_members", evsel
->nr_members
== 2);
626 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel
) == 0);
627 TEST_ASSERT_VAL("wrong sample_read", !evsel
->sample_read
);
629 /* cache-references + :u modifier */
630 evsel
= perf_evsel__next(evsel
);
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
);
637 TEST_ASSERT_VAL("wrong exclude guest", evsel
->attr
.exclude_guest
);
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
);
641 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel
) == 1);
642 TEST_ASSERT_VAL("wrong sample_read", !evsel
->sample_read
);
645 evsel
= perf_evsel__next(evsel
);
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
);
655 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel
));
656 TEST_ASSERT_VAL("wrong sample_read", !evsel
->sample_read
);
661 static int test__group3(struct perf_evlist
*evlist __maybe_unused
)
663 struct perf_evsel
*evsel
, *leader
;
665 TEST_ASSERT_VAL("wrong number of entries", 5 == evlist
->nr_entries
);
666 TEST_ASSERT_VAL("wrong number of groups", 2 == evlist
->nr_groups
);
668 /* group1 syscalls:sys_enter_open:H */
669 evsel
= leader
= perf_evlist__first(evlist
);
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
);
680 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel
));
681 TEST_ASSERT_VAL("wrong group name",
682 !strcmp(leader
->group_name
, "group1"));
683 TEST_ASSERT_VAL("wrong nr_members", evsel
->nr_members
== 2);
684 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel
) == 0);
685 TEST_ASSERT_VAL("wrong sample_read", !evsel
->sample_read
);
687 /* group1 cycles:kppp */
688 evsel
= perf_evsel__next(evsel
);
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
);
695 /* use of precise requires exclude_guest */
696 TEST_ASSERT_VAL("wrong exclude guest", evsel
->attr
.exclude_guest
);
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
);
701 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel
) == 1);
702 TEST_ASSERT_VAL("wrong sample_read", !evsel
->sample_read
);
704 /* group2 cycles + G modifier */
705 evsel
= leader
= perf_evsel__next(evsel
);
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
);
715 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel
));
716 TEST_ASSERT_VAL("wrong group name",
717 !strcmp(leader
->group_name
, "group2"));
718 TEST_ASSERT_VAL("wrong nr_members", evsel
->nr_members
== 2);
719 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel
) == 0);
720 TEST_ASSERT_VAL("wrong sample_read", !evsel
->sample_read
);
722 /* group2 1:3 + G modifier */
723 evsel
= perf_evsel__next(evsel
);
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
);
733 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel
) == 1);
734 TEST_ASSERT_VAL("wrong sample_read", !evsel
->sample_read
);
737 evsel
= perf_evsel__next(evsel
);
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
);
747 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel
));
748 TEST_ASSERT_VAL("wrong sample_read", !evsel
->sample_read
);
753 static int test__group4(struct perf_evlist
*evlist __maybe_unused
)
755 struct perf_evsel
*evsel
, *leader
;
757 TEST_ASSERT_VAL("wrong number of entries", 2 == evlist
->nr_entries
);
758 TEST_ASSERT_VAL("wrong number of groups", 1 == evlist
->nr_groups
);
761 evsel
= leader
= perf_evlist__first(evlist
);
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
);
768 /* use of precise requires exclude_guest */
769 TEST_ASSERT_VAL("wrong exclude guest", evsel
->attr
.exclude_guest
);
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
);
773 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel
));
774 TEST_ASSERT_VAL("wrong nr_members", evsel
->nr_members
== 2);
775 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel
) == 0);
776 TEST_ASSERT_VAL("wrong sample_read", !evsel
->sample_read
);
778 /* instructions:kp + p */
779 evsel
= perf_evsel__next(evsel
);
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
);
786 /* use of precise requires exclude_guest */
787 TEST_ASSERT_VAL("wrong exclude guest", evsel
->attr
.exclude_guest
);
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
);
791 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel
) == 1);
792 TEST_ASSERT_VAL("wrong sample_read", !evsel
->sample_read
);
797 static int test__group5(struct perf_evlist
*evlist __maybe_unused
)
799 struct perf_evsel
*evsel
, *leader
;
801 TEST_ASSERT_VAL("wrong number of entries", 5 == evlist
->nr_entries
);
802 TEST_ASSERT_VAL("wrong number of groups", 2 == evlist
->nr_groups
);
805 evsel
= leader
= perf_evlist__first(evlist
);
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
);
816 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel
));
817 TEST_ASSERT_VAL("wrong nr_members", evsel
->nr_members
== 2);
818 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel
) == 0);
819 TEST_ASSERT_VAL("wrong sample_read", !evsel
->sample_read
);
821 /* instructions + G */
822 evsel
= perf_evsel__next(evsel
);
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
);
833 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel
) == 1);
834 TEST_ASSERT_VAL("wrong sample_read", !evsel
->sample_read
);
837 evsel
= leader
= perf_evsel__next(evsel
);
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
);
848 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel
));
849 TEST_ASSERT_VAL("wrong nr_members", evsel
->nr_members
== 2);
850 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel
) == 0);
851 TEST_ASSERT_VAL("wrong sample_read", !evsel
->sample_read
);
854 evsel
= perf_evsel__next(evsel
);
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
);
865 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel
) == 1);
868 evsel
= perf_evsel__next(evsel
);
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
);
878 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel
));
883 static int test__group_gh1(struct perf_evlist
*evlist
)
885 struct perf_evsel
*evsel
, *leader
;
887 TEST_ASSERT_VAL("wrong number of entries", 2 == evlist
->nr_entries
);
888 TEST_ASSERT_VAL("wrong number of groups", 1 == evlist
->nr_groups
);
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);
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);
923 static int test__group_gh2(struct perf_evlist
*evlist
)
925 struct perf_evsel
*evsel
, *leader
;
927 TEST_ASSERT_VAL("wrong number of entries", 2 == evlist
->nr_entries
);
928 TEST_ASSERT_VAL("wrong number of groups", 1 == evlist
->nr_groups
);
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);
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);
963 static int test__group_gh3(struct perf_evlist
*evlist
)
965 struct perf_evsel
*evsel
, *leader
;
967 TEST_ASSERT_VAL("wrong number of entries", 2 == evlist
->nr_entries
);
968 TEST_ASSERT_VAL("wrong number of groups", 1 == evlist
->nr_groups
);
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);
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);
1003 static int test__group_gh4(struct perf_evlist
*evlist
)
1005 struct perf_evsel
*evsel
, *leader
;
1007 TEST_ASSERT_VAL("wrong number of entries", 2 == evlist
->nr_entries
);
1008 TEST_ASSERT_VAL("wrong number of groups", 1 == evlist
->nr_groups
);
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);
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);
1043 static int test__leader_sample1(struct perf_evlist
*evlist
)
1045 struct perf_evsel
*evsel
, *leader
;
1047 TEST_ASSERT_VAL("wrong number of entries", 3 == evlist
->nr_entries
);
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
);
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
);
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
);
1096 static int test__leader_sample2(struct perf_evlist
*evlist __maybe_unused
)
1098 struct perf_evsel
*evsel
, *leader
;
1100 TEST_ASSERT_VAL("wrong number of entries", 2 == evlist
->nr_entries
);
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
);
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
);
1135 static int test__checkevent_pinned_modifier(struct perf_evlist
*evlist
)
1137 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
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
);
1145 return test__checkevent_symbolic_name(evlist
);
1148 static int test__pinned_group(struct perf_evlist
*evlist
)
1150 struct perf_evsel
*evsel
, *leader
;
1152 TEST_ASSERT_VAL("wrong number of entries", 3 == evlist
->nr_entries
);
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
);
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
);
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
);
1179 static int test__checkevent_breakpoint_len(struct perf_evlist
*evlist
)
1181 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
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
);
1194 static int test__checkevent_breakpoint_len_w(struct perf_evlist
*evlist
)
1196 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
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
);
1210 test__checkevent_breakpoint_len_rw_modifier(struct perf_evlist
*evlist
)
1212 struct perf_evsel
*evsel
= perf_evlist__first(evlist
);
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
);
1219 return test__checkevent_breakpoint_rw(evlist
);
1222 static int count_tracepoints(void)
1224 char events_path
[PATH_MAX
];
1225 struct dirent
*events_ent
;
1226 const char *mountpoint
;
1230 mountpoint
= tracefs_find_mountpoint();
1232 scnprintf(events_path
, PATH_MAX
, "%s/events",
1235 mountpoint
= debugfs_find_mountpoint();
1236 scnprintf(events_path
, PATH_MAX
, "%s/tracing/events",
1240 events_dir
= opendir(events_path
);
1242 TEST_ASSERT_VAL("Can't open events dir", events_dir
);
1244 while ((events_ent
= readdir(events_dir
))) {
1245 char sys_path
[PATH_MAX
];
1246 struct dirent
*sys_ent
;
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"))
1256 scnprintf(sys_path
, PATH_MAX
, "%s/%s",
1257 events_path
, events_ent
->d_name
);
1259 sys_dir
= opendir(sys_path
);
1260 TEST_ASSERT_VAL("Can't open sys dir", sys_dir
);
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"))
1275 closedir(events_dir
);
1279 static int test__all_tracepoints(struct perf_evlist
*evlist
)
1281 TEST_ASSERT_VAL("wrong events count",
1282 count_tracepoints() == evlist
->nr_entries
);
1284 return test__checkevent_tracepoint_multi(evlist
);
1287 struct evlist_test
{
1291 int (*check
)(struct perf_evlist
*evlist
);
1294 static struct evlist_test test__events
[] = {
1296 .name
= "syscalls:sys_enter_open",
1297 .check
= test__checkevent_tracepoint
,
1301 .name
= "syscalls:*",
1302 .check
= test__checkevent_tracepoint_multi
,
1307 .check
= test__checkevent_raw
,
1312 .check
= test__checkevent_numeric
,
1316 .name
= "instructions",
1317 .check
= test__checkevent_symbolic_name
,
1321 .name
= "cycles/period=100000,config2/",
1322 .check
= test__checkevent_symbolic_name_config
,
1327 .check
= test__checkevent_symbolic_alias
,
1331 .name
= "L1-dcache-load-miss",
1332 .check
= test__checkevent_genhw
,
1337 .check
= test__checkevent_breakpoint
,
1342 .check
= test__checkevent_breakpoint_x
,
1347 .check
= test__checkevent_breakpoint_r
,
1352 .check
= test__checkevent_breakpoint_w
,
1356 .name
= "syscalls:sys_enter_open:k",
1357 .check
= test__checkevent_tracepoint_modifier
,
1361 .name
= "syscalls:*:u",
1362 .check
= test__checkevent_tracepoint_multi_modifier
,
1367 .check
= test__checkevent_raw_modifier
,
1372 .check
= test__checkevent_numeric_modifier
,
1376 .name
= "instructions:h",
1377 .check
= test__checkevent_symbolic_name_modifier
,
1382 .check
= test__checkevent_symbolic_alias_modifier
,
1386 .name
= "L1-dcache-load-miss:kp",
1387 .check
= test__checkevent_genhw_modifier
,
1392 .check
= test__checkevent_breakpoint_modifier
,
1396 .name
= "mem:0:x:k",
1397 .check
= test__checkevent_breakpoint_x_modifier
,
1401 .name
= "mem:0:r:hp",
1402 .check
= test__checkevent_breakpoint_r_modifier
,
1406 .name
= "mem:0:w:up",
1407 .check
= test__checkevent_breakpoint_w_modifier
,
1411 .name
= "r1,syscalls:sys_enter_open:k,1:1:hp",
1412 .check
= test__checkevent_list
,
1416 .name
= "instructions:G",
1417 .check
= test__checkevent_exclude_host_modifier
,
1421 .name
= "instructions:H",
1422 .check
= test__checkevent_exclude_guest_modifier
,
1427 .check
= test__checkevent_breakpoint_rw
,
1431 .name
= "mem:0:rw:kp",
1432 .check
= test__checkevent_breakpoint_rw_modifier
,
1436 .name
= "{instructions:k,cycles:upp}",
1437 .check
= test__group1
,
1441 .name
= "{faults:k,cache-references}:u,cycles:k",
1442 .check
= test__group2
,
1446 .name
= "group1{syscalls:sys_enter_open:H,cycles:kppp},group2{cycles,1:3}:G,instructions:u",
1447 .check
= test__group3
,
1451 .name
= "{cycles:u,instructions:kp}:p",
1452 .check
= test__group4
,
1456 .name
= "{cycles,instructions}:G,{cycles:G,instructions:G},cycles",
1457 .check
= test__group5
,
1462 .check
= test__all_tracepoints
,
1466 .name
= "{cycles,cache-misses:G}:H",
1467 .check
= test__group_gh1
,
1471 .name
= "{cycles,cache-misses:H}:G",
1472 .check
= test__group_gh2
,
1476 .name
= "{cycles:G,cache-misses:H}:u",
1477 .check
= test__group_gh3
,
1481 .name
= "{cycles:G,cache-misses:H}:uG",
1482 .check
= test__group_gh4
,
1486 .name
= "{cycles,cache-misses,branch-misses}:S",
1487 .check
= test__leader_sample1
,
1491 .name
= "{instructions,branch-misses}:Su",
1492 .check
= test__leader_sample2
,
1496 .name
= "instructions:uDp",
1497 .check
= test__checkevent_pinned_modifier
,
1501 .name
= "{cycles,cache-misses,branch-misses}:D",
1502 .check
= test__pinned_group
,
1507 .check
= test__checkevent_breakpoint_len
,
1511 .name
= "mem:0/2:w",
1512 .check
= test__checkevent_breakpoint_len_w
,
1516 .name
= "mem:0/4:rw:u",
1517 .check
= test__checkevent_breakpoint_len_rw_modifier
,
1520 #if defined(__s390x__)
1522 .name
= "kvm-s390:kvm_s390_create_vm",
1523 .check
= test__checkevent_tracepoint
,
1528 .name
= "instructions:I",
1529 .check
= test__checkevent_exclude_idle_modifier
,
1533 .name
= "instructions:kIG",
1534 .check
= test__checkevent_exclude_idle_modifier_1
,
1539 static struct evlist_test test__events_pmu
[] = {
1541 .name
= "cpu/config=10,config1,config2=3,period=1000/u",
1542 .check
= test__checkevent_pmu
,
1546 .name
= "cpu/config=1,name=krava/u,cpu/config=2/u",
1547 .check
= test__checkevent_pmu_name
,
1555 int (*check
)(struct list_head
*terms
);
1558 static struct terms_test test__terms
[] = {
1560 .str
= "config=10,config1,config2=3,umask=1",
1561 .check
= test__checkterms_simple
,
1565 static int test_event(struct evlist_test
*e
)
1567 struct perf_evlist
*evlist
;
1570 evlist
= perf_evlist__new();
1574 ret
= parse_events(evlist
, e
->name
);
1576 pr_debug("failed to parse event '%s', err %d\n",
1579 ret
= e
->check(evlist
);
1582 perf_evlist__delete(evlist
);
1587 static int test_events(struct evlist_test
*events
, unsigned cnt
)
1592 for (i
= 0; i
< cnt
; i
++) {
1593 struct evlist_test
*e
= &events
[i
];
1595 pr_debug("running test %d '%s'\n", e
->id
, e
->name
);
1596 ret1
= test_event(e
);
1604 static int test_term(struct terms_test
*t
)
1606 struct list_head terms
;
1609 INIT_LIST_HEAD(&terms
);
1611 ret
= parse_events_terms(&terms
, t
->str
);
1613 pr_debug("failed to parse terms '%s', err %d\n",
1618 ret
= t
->check(&terms
);
1619 parse_events__free_terms(&terms
);
1624 static int test_terms(struct terms_test
*terms
, unsigned cnt
)
1629 for (i
= 0; i
< cnt
; i
++) {
1630 struct terms_test
*t
= &terms
[i
];
1632 pr_debug("running test %d '%s'\n", i
, t
->str
);
1641 static int test_pmu(void)
1644 char path
[PATH_MAX
];
1647 snprintf(path
, PATH_MAX
, "%s/bus/event_source/devices/cpu/format/",
1648 sysfs__mountpoint());
1650 ret
= stat(path
, &st
);
1652 pr_debug("omitting PMU cpu tests\n");
1656 static int test_pmu_events(void)
1659 char path
[PATH_MAX
];
1664 snprintf(path
, PATH_MAX
, "%s/bus/event_source/devices/cpu/events/",
1665 sysfs__mountpoint());
1667 ret
= stat(path
, &st
);
1669 pr_debug("omitting PMU cpu events tests\n");
1673 dir
= opendir(path
);
1675 pr_debug("can't open pmu event dir");
1679 while (!ret
&& (ent
= readdir(dir
))) {
1680 #define MAX_NAME 100
1681 struct evlist_test e
;
1682 char name
[MAX_NAME
];
1684 if (!strcmp(ent
->d_name
, ".") ||
1685 !strcmp(ent
->d_name
, ".."))
1688 snprintf(name
, MAX_NAME
, "cpu/event=%s/u", ent
->d_name
);
1691 e
.check
= test__checkevent_pmu_events
;
1693 ret
= test_event(&e
);
1696 snprintf(name
, MAX_NAME
, "%s:u,cpu/event=%s/u", ent
->d_name
, ent
->d_name
);
1698 e
.check
= test__checkevent_pmu_events_mix
;
1699 ret
= test_event(&e
);
1707 int test__parse_events(void)
1711 #define TEST_EVENTS(tests) \
1713 ret1 = test_events(tests, ARRAY_SIZE(tests)); \
1718 TEST_EVENTS(test__events
);
1721 TEST_EVENTS(test__events_pmu
);
1724 int ret
= test_pmu_events();
1729 ret1
= test_terms(test__terms
, ARRAY_SIZE(test__terms
));