blob: d76963f7ad3d4a0a117af25f69bcc364d475fa11 [file] [log] [blame]
Jiri Olsaf50246e2012-05-21 09:12:49 +02001
2#include "parse-events.h"
3#include "evsel.h"
4#include "evlist.h"
Borislav Petkovcd0cfad2013-12-09 17:14:24 +01005#include <api/fs/fs.h>
Steven Rostedt (Red Hat)23773ca2015-02-02 14:35:07 -05006#include <api/fs/tracefs.h>
Borislav Petkov553873e2013-12-09 17:14:23 +01007#include <api/fs/debugfs.h>
Jiri Olsac81251e2012-11-10 01:46:51 +01008#include "tests.h"
Jiri Olsa84f5d362014-07-14 23:46:48 +02009#include "debug.h"
David Howellsd2709c72012-11-19 22:21:03 +000010#include <linux/hw_breakpoint.h>
Jiri Olsaf50246e2012-05-21 09:12:49 +020011
Jiri Olsa30f31c02012-08-01 14:48:58 +020012#define PERF_TP_SAMPLE_TYPE (PERF_SAMPLE_RAW | PERF_SAMPLE_TIME | \
13 PERF_SAMPLE_CPU | PERF_SAMPLE_PERIOD)
14
Jiri Olsaf50246e2012-05-21 09:12:49 +020015static int test__checkevent_tracepoint(struct perf_evlist *evlist)
16{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -030017 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +020018
19 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
Namhyung Kim8d7d8472013-01-22 18:09:30 +090020 TEST_ASSERT_VAL("wrong number of groups", 0 == evlist->nr_groups);
Jiri Olsaf50246e2012-05-21 09:12:49 +020021 TEST_ASSERT_VAL("wrong type", PERF_TYPE_TRACEPOINT == evsel->attr.type);
22 TEST_ASSERT_VAL("wrong sample_type",
Jiri Olsa30f31c02012-08-01 14:48:58 +020023 PERF_TP_SAMPLE_TYPE == evsel->attr.sample_type);
Jiri Olsaf50246e2012-05-21 09:12:49 +020024 TEST_ASSERT_VAL("wrong sample_period", 1 == evsel->attr.sample_period);
25 return 0;
26}
27
28static int test__checkevent_tracepoint_multi(struct perf_evlist *evlist)
29{
30 struct perf_evsel *evsel;
31
32 TEST_ASSERT_VAL("wrong number of entries", evlist->nr_entries > 1);
Namhyung Kim8d7d8472013-01-22 18:09:30 +090033 TEST_ASSERT_VAL("wrong number of groups", 0 == evlist->nr_groups);
Jiri Olsaf50246e2012-05-21 09:12:49 +020034
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -030035 evlist__for_each(evlist, evsel) {
Jiri Olsaf50246e2012-05-21 09:12:49 +020036 TEST_ASSERT_VAL("wrong type",
37 PERF_TYPE_TRACEPOINT == evsel->attr.type);
38 TEST_ASSERT_VAL("wrong sample_type",
Jiri Olsa30f31c02012-08-01 14:48:58 +020039 PERF_TP_SAMPLE_TYPE == evsel->attr.sample_type);
Jiri Olsaf50246e2012-05-21 09:12:49 +020040 TEST_ASSERT_VAL("wrong sample_period",
41 1 == evsel->attr.sample_period);
42 }
43 return 0;
44}
45
46static int test__checkevent_raw(struct perf_evlist *evlist)
47{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -030048 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +020049
50 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
51 TEST_ASSERT_VAL("wrong type", PERF_TYPE_RAW == evsel->attr.type);
52 TEST_ASSERT_VAL("wrong config", 0x1a == evsel->attr.config);
53 return 0;
54}
55
56static int test__checkevent_numeric(struct perf_evlist *evlist)
57{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -030058 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +020059
60 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
61 TEST_ASSERT_VAL("wrong type", 1 == evsel->attr.type);
62 TEST_ASSERT_VAL("wrong config", 1 == evsel->attr.config);
63 return 0;
64}
65
66static int test__checkevent_symbolic_name(struct perf_evlist *evlist)
67{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -030068 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +020069
70 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
71 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
72 TEST_ASSERT_VAL("wrong config",
73 PERF_COUNT_HW_INSTRUCTIONS == evsel->attr.config);
74 return 0;
75}
76
77static int test__checkevent_symbolic_name_config(struct perf_evlist *evlist)
78{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -030079 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +020080
81 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
82 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HARDWARE == evsel->attr.type);
83 TEST_ASSERT_VAL("wrong config",
84 PERF_COUNT_HW_CPU_CYCLES == evsel->attr.config);
85 TEST_ASSERT_VAL("wrong period",
86 100000 == evsel->attr.sample_period);
87 TEST_ASSERT_VAL("wrong config1",
88 0 == evsel->attr.config1);
89 TEST_ASSERT_VAL("wrong config2",
90 1 == evsel->attr.config2);
91 return 0;
92}
93
94static int test__checkevent_symbolic_alias(struct perf_evlist *evlist)
95{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -030096 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +020097
98 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
99 TEST_ASSERT_VAL("wrong type", PERF_TYPE_SOFTWARE == evsel->attr.type);
100 TEST_ASSERT_VAL("wrong config",
101 PERF_COUNT_SW_PAGE_FAULTS == evsel->attr.config);
102 return 0;
103}
104
105static int test__checkevent_genhw(struct perf_evlist *evlist)
106{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300107 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200108
109 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
110 TEST_ASSERT_VAL("wrong type", PERF_TYPE_HW_CACHE == evsel->attr.type);
111 TEST_ASSERT_VAL("wrong config", (1 << 16) == evsel->attr.config);
112 return 0;
113}
114
115static int test__checkevent_breakpoint(struct perf_evlist *evlist)
116{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300117 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200118
119 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
120 TEST_ASSERT_VAL("wrong type", PERF_TYPE_BREAKPOINT == evsel->attr.type);
121 TEST_ASSERT_VAL("wrong config", 0 == evsel->attr.config);
122 TEST_ASSERT_VAL("wrong bp_type", (HW_BREAKPOINT_R | HW_BREAKPOINT_W) ==
123 evsel->attr.bp_type);
124 TEST_ASSERT_VAL("wrong bp_len", HW_BREAKPOINT_LEN_4 ==
125 evsel->attr.bp_len);
126 return 0;
127}
128
129static int test__checkevent_breakpoint_x(struct perf_evlist *evlist)
130{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300131 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200132
133 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
134 TEST_ASSERT_VAL("wrong type", PERF_TYPE_BREAKPOINT == evsel->attr.type);
135 TEST_ASSERT_VAL("wrong config", 0 == evsel->attr.config);
136 TEST_ASSERT_VAL("wrong bp_type",
137 HW_BREAKPOINT_X == evsel->attr.bp_type);
138 TEST_ASSERT_VAL("wrong bp_len", sizeof(long) == evsel->attr.bp_len);
139 return 0;
140}
141
142static int test__checkevent_breakpoint_r(struct perf_evlist *evlist)
143{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300144 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200145
146 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
147 TEST_ASSERT_VAL("wrong type",
148 PERF_TYPE_BREAKPOINT == evsel->attr.type);
149 TEST_ASSERT_VAL("wrong config", 0 == evsel->attr.config);
150 TEST_ASSERT_VAL("wrong bp_type",
151 HW_BREAKPOINT_R == evsel->attr.bp_type);
152 TEST_ASSERT_VAL("wrong bp_len",
153 HW_BREAKPOINT_LEN_4 == evsel->attr.bp_len);
154 return 0;
155}
156
157static int test__checkevent_breakpoint_w(struct perf_evlist *evlist)
158{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300159 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200160
161 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
162 TEST_ASSERT_VAL("wrong type",
163 PERF_TYPE_BREAKPOINT == evsel->attr.type);
164 TEST_ASSERT_VAL("wrong config", 0 == evsel->attr.config);
165 TEST_ASSERT_VAL("wrong bp_type",
166 HW_BREAKPOINT_W == evsel->attr.bp_type);
167 TEST_ASSERT_VAL("wrong bp_len",
168 HW_BREAKPOINT_LEN_4 == evsel->attr.bp_len);
169 return 0;
170}
171
Jiri Olsa75827322012-06-29 09:22:54 +0200172static int test__checkevent_breakpoint_rw(struct perf_evlist *evlist)
173{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300174 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsa75827322012-06-29 09:22:54 +0200175
176 TEST_ASSERT_VAL("wrong number of entries", 1 == evlist->nr_entries);
177 TEST_ASSERT_VAL("wrong type",
178 PERF_TYPE_BREAKPOINT == evsel->attr.type);
179 TEST_ASSERT_VAL("wrong config", 0 == evsel->attr.config);
180 TEST_ASSERT_VAL("wrong bp_type",
181 (HW_BREAKPOINT_R|HW_BREAKPOINT_W) == evsel->attr.bp_type);
182 TEST_ASSERT_VAL("wrong bp_len",
183 HW_BREAKPOINT_LEN_4 == evsel->attr.bp_len);
184 return 0;
185}
186
Jiri Olsaf50246e2012-05-21 09:12:49 +0200187static int test__checkevent_tracepoint_modifier(struct perf_evlist *evlist)
188{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300189 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200190
191 TEST_ASSERT_VAL("wrong exclude_user", evsel->attr.exclude_user);
192 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
193 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
194 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
195
196 return test__checkevent_tracepoint(evlist);
197}
198
199static int
200test__checkevent_tracepoint_multi_modifier(struct perf_evlist *evlist)
201{
202 struct perf_evsel *evsel;
203
204 TEST_ASSERT_VAL("wrong number of entries", evlist->nr_entries > 1);
205
Arnaldo Carvalho de Melo0050f7a2014-01-10 10:37:27 -0300206 evlist__for_each(evlist, evsel) {
Jiri Olsaf50246e2012-05-21 09:12:49 +0200207 TEST_ASSERT_VAL("wrong exclude_user",
208 !evsel->attr.exclude_user);
209 TEST_ASSERT_VAL("wrong exclude_kernel",
210 evsel->attr.exclude_kernel);
211 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
212 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
213 }
214
215 return test__checkevent_tracepoint_multi(evlist);
216}
217
218static int test__checkevent_raw_modifier(struct perf_evlist *evlist)
219{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300220 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200221
222 TEST_ASSERT_VAL("wrong exclude_user", evsel->attr.exclude_user);
223 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
224 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
225 TEST_ASSERT_VAL("wrong precise_ip", evsel->attr.precise_ip);
226
227 return test__checkevent_raw(evlist);
228}
229
230static int test__checkevent_numeric_modifier(struct perf_evlist *evlist)
231{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300232 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200233
234 TEST_ASSERT_VAL("wrong exclude_user", evsel->attr.exclude_user);
235 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
236 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
237 TEST_ASSERT_VAL("wrong precise_ip", evsel->attr.precise_ip);
238
239 return test__checkevent_numeric(evlist);
240}
241
242static int test__checkevent_symbolic_name_modifier(struct perf_evlist *evlist)
243{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300244 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200245
246 TEST_ASSERT_VAL("wrong exclude_user", evsel->attr.exclude_user);
247 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
248 TEST_ASSERT_VAL("wrong exclude_hv", !evsel->attr.exclude_hv);
249 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
250
251 return test__checkevent_symbolic_name(evlist);
252}
253
254static int test__checkevent_exclude_host_modifier(struct perf_evlist *evlist)
255{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300256 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200257
258 TEST_ASSERT_VAL("wrong exclude guest", !evsel->attr.exclude_guest);
259 TEST_ASSERT_VAL("wrong exclude host", evsel->attr.exclude_host);
260
261 return test__checkevent_symbolic_name(evlist);
262}
263
264static int test__checkevent_exclude_guest_modifier(struct perf_evlist *evlist)
265{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300266 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200267
268 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
269 TEST_ASSERT_VAL("wrong exclude host", !evsel->attr.exclude_host);
270
271 return test__checkevent_symbolic_name(evlist);
272}
273
274static int test__checkevent_symbolic_alias_modifier(struct perf_evlist *evlist)
275{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300276 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200277
278 TEST_ASSERT_VAL("wrong exclude_user", !evsel->attr.exclude_user);
279 TEST_ASSERT_VAL("wrong exclude_kernel", evsel->attr.exclude_kernel);
280 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
281 TEST_ASSERT_VAL("wrong precise_ip", !evsel->attr.precise_ip);
282
283 return test__checkevent_symbolic_alias(evlist);
284}
285
286static int test__checkevent_genhw_modifier(struct perf_evlist *evlist)
287{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300288 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200289
290 TEST_ASSERT_VAL("wrong exclude_user", evsel->attr.exclude_user);
291 TEST_ASSERT_VAL("wrong exclude_kernel", !evsel->attr.exclude_kernel);
292 TEST_ASSERT_VAL("wrong exclude_hv", evsel->attr.exclude_hv);
293 TEST_ASSERT_VAL("wrong precise_ip", evsel->attr.precise_ip);
294
295 return test__checkevent_genhw(evlist);
296}
297
Jiri Olsaa1e12da2015-04-07 23:25:14 +0200298static 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
Jiri Olsaf50246e2012-05-21 09:12:49 +0200328static int test__checkevent_breakpoint_modifier(struct perf_evlist *evlist)
329{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300330 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200331
Jiri Olsaf50246e2012-05-21 09:12:49 +0200332
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);
Jiri Olsa287e74a2012-06-28 23:18:49 +0200337 TEST_ASSERT_VAL("wrong name",
Robert Richterac2ba9f2012-08-16 21:10:21 +0200338 !strcmp(perf_evsel__name(evsel), "mem:0:u"));
Jiri Olsaf50246e2012-05-21 09:12:49 +0200339
340 return test__checkevent_breakpoint(evlist);
341}
342
343static int test__checkevent_breakpoint_x_modifier(struct perf_evlist *evlist)
344{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300345 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200346
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);
Jiri Olsa287e74a2012-06-28 23:18:49 +0200351 TEST_ASSERT_VAL("wrong name",
Robert Richterac2ba9f2012-08-16 21:10:21 +0200352 !strcmp(perf_evsel__name(evsel), "mem:0:x:k"));
Jiri Olsaf50246e2012-05-21 09:12:49 +0200353
354 return test__checkevent_breakpoint_x(evlist);
355}
356
357static int test__checkevent_breakpoint_r_modifier(struct perf_evlist *evlist)
358{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300359 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200360
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);
Jiri Olsa287e74a2012-06-28 23:18:49 +0200365 TEST_ASSERT_VAL("wrong name",
Robert Richterac2ba9f2012-08-16 21:10:21 +0200366 !strcmp(perf_evsel__name(evsel), "mem:0:r:hp"));
Jiri Olsaf50246e2012-05-21 09:12:49 +0200367
368 return test__checkevent_breakpoint_r(evlist);
369}
370
371static int test__checkevent_breakpoint_w_modifier(struct perf_evlist *evlist)
372{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300373 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200374
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);
Jiri Olsa287e74a2012-06-28 23:18:49 +0200379 TEST_ASSERT_VAL("wrong name",
Robert Richterac2ba9f2012-08-16 21:10:21 +0200380 !strcmp(perf_evsel__name(evsel), "mem:0:w:up"));
Jiri Olsaf50246e2012-05-21 09:12:49 +0200381
382 return test__checkevent_breakpoint_w(evlist);
383}
384
Jiri Olsa75827322012-06-29 09:22:54 +0200385static int test__checkevent_breakpoint_rw_modifier(struct perf_evlist *evlist)
386{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300387 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsa75827322012-06-29 09:22:54 +0200388
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);
Jiri Olsa287e74a2012-06-28 23:18:49 +0200393 TEST_ASSERT_VAL("wrong name",
Robert Richterac2ba9f2012-08-16 21:10:21 +0200394 !strcmp(perf_evsel__name(evsel), "mem:0:rw:kp"));
Jiri Olsa75827322012-06-29 09:22:54 +0200395
396 return test__checkevent_breakpoint_rw(evlist);
397}
398
Jiri Olsaf50246e2012-05-21 09:12:49 +0200399static int test__checkevent_pmu(struct perf_evlist *evlist)
400{
401
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300402 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200403
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{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300416 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200417
418 TEST_ASSERT_VAL("wrong number of entries", 3 == evlist->nr_entries);
419
420 /* r1 */
Jiri Olsaf50246e2012-05-21 09:12:49 +0200421 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
Riku Voipio43f322b2015-04-16 16:52:53 +0300430 /* syscalls:sys_enter_openat:k */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300431 evsel = perf_evsel__next(evsel);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200432 TEST_ASSERT_VAL("wrong type", PERF_TYPE_TRACEPOINT == evsel->attr.type);
433 TEST_ASSERT_VAL("wrong sample_type",
Jiri Olsa30f31c02012-08-01 14:48:58 +0200434 PERF_TP_SAMPLE_TYPE == evsel->attr.sample_type);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200435 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 */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300442 evsel = perf_evsel__next(evsel);
Jiri Olsaf50246e2012-05-21 09:12:49 +0200443 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
Jiri Olsa6b5fc392012-05-21 09:12:53 +0200453static int test__checkevent_pmu_name(struct perf_evlist *evlist)
454{
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300455 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsa6b5fc392012-05-21 09:12:53 +0200456
Jiri Olsa7a25b2d2012-06-21 12:25:16 +0200457 /* cpu/config=1,name=krava/u */
Jiri Olsa6b5fc392012-05-21 09:12:53 +0200458 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);
Arnaldo Carvalho de Melo22c8b842012-06-12 13:55:13 -0300461 TEST_ASSERT_VAL("wrong name", !strcmp(perf_evsel__name(evsel), "krava"));
Jiri Olsa6b5fc392012-05-21 09:12:53 +0200462
Jiri Olsa7a25b2d2012-06-21 12:25:16 +0200463 /* cpu/config=2/u" */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300464 evsel = perf_evsel__next(evsel);
Jiri Olsa6b5fc392012-05-21 09:12:53 +0200465 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);
Jiri Olsa7a25b2d2012-06-21 12:25:16 +0200468 TEST_ASSERT_VAL("wrong name",
Robert Richterac2ba9f2012-08-16 21:10:21 +0200469 !strcmp(perf_evsel__name(evsel), "cpu/config=2/u"));
Jiri Olsa6b5fc392012-05-21 09:12:53 +0200470
471 return 0;
472}
473
Jiri Olsa3f3a2062012-10-10 14:53:18 +0200474static int test__checkevent_pmu_events(struct perf_evlist *evlist)
475{
Arnaldo Carvalho de Melo9a354cd2013-11-13 15:54:30 -0300476 struct perf_evsel *evsel = perf_evlist__first(evlist);
Jiri Olsa3f3a2062012-10-10 14:53:18 +0200477
Jiri Olsa3f3a2062012-10-10 14:53:18 +0200478 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);
Michael Ellermanc9ee7802013-08-06 23:28:06 +1000486 TEST_ASSERT_VAL("wrong pinned", !evsel->attr.pinned);
Jiri Olsa3f3a2062012-10-10 14:53:18 +0200487
488 return 0;
489}
490
Kan Liangffe59782014-10-07 11:08:52 -0400491
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
Jiri Olsa44293922012-06-15 14:31:42 +0800521static int test__checkterms_simple(struct list_head *terms)
522{
Arnaldo Carvalho de Melo6cee6cd2013-01-18 16:29:49 -0300523 struct parse_events_term *term;
Jiri Olsa44293922012-06-15 14:31:42 +0800524
525 /* config=10 */
Arnaldo Carvalho de Melo6cee6cd2013-01-18 16:29:49 -0300526 term = list_entry(terms->next, struct parse_events_term, list);
Jiri Olsa44293922012-06-15 14:31:42 +0800527 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 */
Arnaldo Carvalho de Melo6cee6cd2013-01-18 16:29:49 -0300535 term = list_entry(term->list.next, struct parse_events_term, list);
Jiri Olsa44293922012-06-15 14:31:42 +0800536 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 */
Arnaldo Carvalho de Melo6cee6cd2013-01-18 16:29:49 -0300544 term = list_entry(term->list.next, struct parse_events_term, list);
Jiri Olsa44293922012-06-15 14:31:42 +0800545 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*/
Arnaldo Carvalho de Melo6cee6cd2013-01-18 16:29:49 -0300553 term = list_entry(term->list.next, struct parse_events_term, list);
Jiri Olsa44293922012-06-15 14:31:42 +0800554 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
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200564static 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);
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900569 TEST_ASSERT_VAL("wrong number of groups", 1 == evlist->nr_groups);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200570
571 /* instructions:k */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300572 evsel = leader = perf_evlist__first(evlist);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200573 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);
Namhyung Kim823254e2012-11-29 15:38:30 +0900582 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900583 TEST_ASSERT_VAL("wrong nr_members", evsel->nr_members == 2);
584 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 0);
Jiri Olsaa9f93f92013-02-01 20:37:11 +0100585 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200586
587 /* cycles:upp */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300588 evsel = perf_evsel__next(evsel);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200589 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);
Jiri Olsa42be7392012-10-20 18:29:34 +0200595 /* use of precise requires exclude_guest */
596 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200597 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);
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900600 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 1);
Jiri Olsaa9f93f92013-02-01 20:37:11 +0100601 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200602
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);
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900611 TEST_ASSERT_VAL("wrong number of groups", 1 == evlist->nr_groups);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200612
613 /* faults + :ku modifier */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300614 evsel = leader = perf_evlist__first(evlist);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200615 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);
Namhyung Kim823254e2012-11-29 15:38:30 +0900624 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900625 TEST_ASSERT_VAL("wrong nr_members", evsel->nr_members == 2);
626 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 0);
Jiri Olsaa9f93f92013-02-01 20:37:11 +0100627 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200628
629 /* cache-references + :u modifier */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300630 evsel = perf_evsel__next(evsel);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200631 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);
Jiri Olsa5a30a992013-02-04 10:56:43 +0100637 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200638 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);
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900641 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 1);
Jiri Olsaa9f93f92013-02-01 20:37:11 +0100642 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200643
644 /* cycles:k */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300645 evsel = perf_evsel__next(evsel);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200646 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);
Namhyung Kim823254e2012-11-29 15:38:30 +0900655 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
Jiri Olsaa9f93f92013-02-01 20:37:11 +0100656 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200657
658 return 0;
659}
660
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300661static int test__group3(struct perf_evlist *evlist __maybe_unused)
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200662{
663 struct perf_evsel *evsel, *leader;
664
665 TEST_ASSERT_VAL("wrong number of entries", 5 == evlist->nr_entries);
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900666 TEST_ASSERT_VAL("wrong number of groups", 2 == evlist->nr_groups);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200667
Riku Voipio43f322b2015-04-16 16:52:53 +0300668 /* group1 syscalls:sys_enter_openat:H */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300669 evsel = leader = perf_evlist__first(evlist);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200670 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);
Namhyung Kim823254e2012-11-29 15:38:30 +0900680 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200681 TEST_ASSERT_VAL("wrong group name",
682 !strcmp(leader->group_name, "group1"));
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900683 TEST_ASSERT_VAL("wrong nr_members", evsel->nr_members == 2);
684 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 0);
Jiri Olsaa9f93f92013-02-01 20:37:11 +0100685 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200686
687 /* group1 cycles:kppp */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300688 evsel = perf_evsel__next(evsel);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200689 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);
Jiri Olsa42be7392012-10-20 18:29:34 +0200695 /* use of precise requires exclude_guest */
696 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200697 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);
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900701 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 1);
Jiri Olsaa9f93f92013-02-01 20:37:11 +0100702 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200703
704 /* group2 cycles + G modifier */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300705 evsel = leader = perf_evsel__next(evsel);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200706 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);
Namhyung Kim823254e2012-11-29 15:38:30 +0900715 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200716 TEST_ASSERT_VAL("wrong group name",
717 !strcmp(leader->group_name, "group2"));
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900718 TEST_ASSERT_VAL("wrong nr_members", evsel->nr_members == 2);
719 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 0);
Jiri Olsaa9f93f92013-02-01 20:37:11 +0100720 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200721
722 /* group2 1:3 + G modifier */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300723 evsel = perf_evsel__next(evsel);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200724 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);
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900733 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 1);
Jiri Olsaa9f93f92013-02-01 20:37:11 +0100734 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200735
736 /* instructions:u */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300737 evsel = perf_evsel__next(evsel);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200738 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);
Namhyung Kim823254e2012-11-29 15:38:30 +0900747 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
Jiri Olsaa9f93f92013-02-01 20:37:11 +0100748 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200749
750 return 0;
751}
752
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300753static int test__group4(struct perf_evlist *evlist __maybe_unused)
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200754{
755 struct perf_evsel *evsel, *leader;
756
757 TEST_ASSERT_VAL("wrong number of entries", 2 == evlist->nr_entries);
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900758 TEST_ASSERT_VAL("wrong number of groups", 1 == evlist->nr_groups);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200759
760 /* cycles:u + p */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300761 evsel = leader = perf_evlist__first(evlist);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200762 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);
Jiri Olsa42be7392012-10-20 18:29:34 +0200768 /* use of precise requires exclude_guest */
769 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200770 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);
Namhyung Kim823254e2012-11-29 15:38:30 +0900773 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900774 TEST_ASSERT_VAL("wrong nr_members", evsel->nr_members == 2);
775 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 0);
Jiri Olsaa9f93f92013-02-01 20:37:11 +0100776 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200777
778 /* instructions:kp + p */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300779 evsel = perf_evsel__next(evsel);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200780 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);
Jiri Olsa42be7392012-10-20 18:29:34 +0200786 /* use of precise requires exclude_guest */
787 TEST_ASSERT_VAL("wrong exclude guest", evsel->attr.exclude_guest);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200788 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);
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900791 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 1);
Jiri Olsaa9f93f92013-02-01 20:37:11 +0100792 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200793
794 return 0;
795}
796
Irina Tirdea1d037ca2012-09-11 01:15:03 +0300797static int test__group5(struct perf_evlist *evlist __maybe_unused)
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200798{
799 struct perf_evsel *evsel, *leader;
800
801 TEST_ASSERT_VAL("wrong number of entries", 5 == evlist->nr_entries);
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900802 TEST_ASSERT_VAL("wrong number of groups", 2 == evlist->nr_groups);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200803
804 /* cycles + G */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300805 evsel = leader = perf_evlist__first(evlist);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200806 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);
Namhyung Kim823254e2012-11-29 15:38:30 +0900816 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900817 TEST_ASSERT_VAL("wrong nr_members", evsel->nr_members == 2);
818 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 0);
Jiri Olsaa9f93f92013-02-01 20:37:11 +0100819 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200820
821 /* instructions + G */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300822 evsel = perf_evsel__next(evsel);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200823 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);
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900833 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 1);
Jiri Olsaa9f93f92013-02-01 20:37:11 +0100834 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200835
836 /* cycles:G */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300837 evsel = leader = perf_evsel__next(evsel);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200838 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);
Namhyung Kim823254e2012-11-29 15:38:30 +0900848 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900849 TEST_ASSERT_VAL("wrong nr_members", evsel->nr_members == 2);
850 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 0);
Jiri Olsaa9f93f92013-02-01 20:37:11 +0100851 TEST_ASSERT_VAL("wrong sample_read", !evsel->sample_read);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200852
853 /* instructions:G */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300854 evsel = perf_evsel__next(evsel);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200855 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);
Namhyung Kim8d7d8472013-01-22 18:09:30 +0900865 TEST_ASSERT_VAL("wrong group_idx", perf_evsel__group_idx(evsel) == 1);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200866
867 /* cycles */
Arnaldo Carvalho de Melo0c21f732012-08-14 16:42:15 -0300868 evsel = perf_evsel__next(evsel);
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200869 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);
Namhyung Kim823254e2012-11-29 15:38:30 +0900878 TEST_ASSERT_VAL("wrong leader", perf_evsel__is_group_leader(evsel));
Jiri Olsa905f5ee2012-08-08 12:23:52 +0200879
880 return 0;
881}
882
Jiri Olsa5a30a992013-02-04 10:56:43 +0100883static 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
Jiri Olsaa9f93f92013-02-01 20:37:11 +01001043static 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
Michael Ellermanc9ee7802013-08-06 23:28:06 +10001135static 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
Jacob Shinec323982014-05-29 17:26:52 +02001179static 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
Jiri Olsa82ce75d2012-12-17 14:08:38 +01001222static int count_tracepoints(void)
1223{
1224 char events_path[PATH_MAX];
1225 struct dirent *events_ent;
Steven Rostedt (Red Hat)23773ca2015-02-02 14:35:07 -05001226 const char *mountpoint;
Jiri Olsa82ce75d2012-12-17 14:08:38 +01001227 DIR *events_dir;
1228 int cnt = 0;
1229
Steven Rostedt (Red Hat)23773ca2015-02-02 14:35:07 -05001230 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 }
Jiri Olsa82ce75d2012-12-17 14:08:38 +01001239
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
Arnaldo Carvalho de Melo23b63392013-01-18 16:56:57 -03001287struct evlist_test {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001288 const char *name;
1289 __u32 type;
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001290 const int id;
Jiri Olsaf50246e2012-05-21 09:12:49 +02001291 int (*check)(struct perf_evlist *evlist);
1292};
1293
Arnaldo Carvalho de Melo23b63392013-01-18 16:56:57 -03001294static struct evlist_test test__events[] = {
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001295 {
Riku Voipio43f322b2015-04-16 16:52:53 +03001296 .name = "syscalls:sys_enter_openat",
Jiri Olsaf50246e2012-05-21 09:12:49 +02001297 .check = test__checkevent_tracepoint,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001298 .id = 0,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001299 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001300 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001301 .name = "syscalls:*",
1302 .check = test__checkevent_tracepoint_multi,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001303 .id = 1,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001304 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001305 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001306 .name = "r1a",
1307 .check = test__checkevent_raw,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001308 .id = 2,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001309 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001310 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001311 .name = "1:1",
1312 .check = test__checkevent_numeric,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001313 .id = 3,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001314 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001315 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001316 .name = "instructions",
1317 .check = test__checkevent_symbolic_name,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001318 .id = 4,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001319 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001320 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001321 .name = "cycles/period=100000,config2/",
1322 .check = test__checkevent_symbolic_name_config,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001323 .id = 5,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001324 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001325 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001326 .name = "faults",
1327 .check = test__checkevent_symbolic_alias,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001328 .id = 6,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001329 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001330 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001331 .name = "L1-dcache-load-miss",
1332 .check = test__checkevent_genhw,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001333 .id = 7,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001334 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001335 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001336 .name = "mem:0",
1337 .check = test__checkevent_breakpoint,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001338 .id = 8,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001339 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001340 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001341 .name = "mem:0:x",
1342 .check = test__checkevent_breakpoint_x,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001343 .id = 9,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001344 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001345 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001346 .name = "mem:0:r",
1347 .check = test__checkevent_breakpoint_r,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001348 .id = 10,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001349 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001350 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001351 .name = "mem:0:w",
1352 .check = test__checkevent_breakpoint_w,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001353 .id = 11,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001354 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001355 {
Riku Voipio43f322b2015-04-16 16:52:53 +03001356 .name = "syscalls:sys_enter_openat:k",
Jiri Olsaf50246e2012-05-21 09:12:49 +02001357 .check = test__checkevent_tracepoint_modifier,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001358 .id = 12,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001359 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001360 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001361 .name = "syscalls:*:u",
1362 .check = test__checkevent_tracepoint_multi_modifier,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001363 .id = 13,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001364 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001365 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001366 .name = "r1a:kp",
1367 .check = test__checkevent_raw_modifier,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001368 .id = 14,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001369 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001370 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001371 .name = "1:1:hp",
1372 .check = test__checkevent_numeric_modifier,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001373 .id = 15,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001374 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001375 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001376 .name = "instructions:h",
1377 .check = test__checkevent_symbolic_name_modifier,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001378 .id = 16,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001379 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001380 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001381 .name = "faults:u",
1382 .check = test__checkevent_symbolic_alias_modifier,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001383 .id = 17,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001384 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001385 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001386 .name = "L1-dcache-load-miss:kp",
1387 .check = test__checkevent_genhw_modifier,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001388 .id = 18,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001389 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001390 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001391 .name = "mem:0:u",
1392 .check = test__checkevent_breakpoint_modifier,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001393 .id = 19,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001394 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001395 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001396 .name = "mem:0:x:k",
1397 .check = test__checkevent_breakpoint_x_modifier,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001398 .id = 20,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001399 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001400 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001401 .name = "mem:0:r:hp",
1402 .check = test__checkevent_breakpoint_r_modifier,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001403 .id = 21,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001404 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001405 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001406 .name = "mem:0:w:up",
1407 .check = test__checkevent_breakpoint_w_modifier,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001408 .id = 22,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001409 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001410 {
Riku Voipio43f322b2015-04-16 16:52:53 +03001411 .name = "r1,syscalls:sys_enter_openat:k,1:1:hp",
Jiri Olsaf50246e2012-05-21 09:12:49 +02001412 .check = test__checkevent_list,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001413 .id = 23,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001414 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001415 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001416 .name = "instructions:G",
1417 .check = test__checkevent_exclude_host_modifier,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001418 .id = 24,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001419 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001420 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001421 .name = "instructions:H",
1422 .check = test__checkevent_exclude_guest_modifier,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001423 .id = 25,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001424 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001425 {
Jiri Olsa75827322012-06-29 09:22:54 +02001426 .name = "mem:0:rw",
1427 .check = test__checkevent_breakpoint_rw,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001428 .id = 26,
Jiri Olsa75827322012-06-29 09:22:54 +02001429 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001430 {
Jiri Olsa75827322012-06-29 09:22:54 +02001431 .name = "mem:0:rw:kp",
1432 .check = test__checkevent_breakpoint_rw_modifier,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001433 .id = 27,
Jiri Olsa75827322012-06-29 09:22:54 +02001434 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001435 {
Jiri Olsa905f5ee2012-08-08 12:23:52 +02001436 .name = "{instructions:k,cycles:upp}",
1437 .check = test__group1,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001438 .id = 28,
Jiri Olsa905f5ee2012-08-08 12:23:52 +02001439 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001440 {
Jiri Olsa905f5ee2012-08-08 12:23:52 +02001441 .name = "{faults:k,cache-references}:u,cycles:k",
1442 .check = test__group2,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001443 .id = 29,
Jiri Olsa905f5ee2012-08-08 12:23:52 +02001444 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001445 {
Riku Voipio43f322b2015-04-16 16:52:53 +03001446 .name = "group1{syscalls:sys_enter_openat:H,cycles:kppp},group2{cycles,1:3}:G,instructions:u",
Jiri Olsa905f5ee2012-08-08 12:23:52 +02001447 .check = test__group3,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001448 .id = 30,
Jiri Olsa905f5ee2012-08-08 12:23:52 +02001449 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001450 {
Jiri Olsa905f5ee2012-08-08 12:23:52 +02001451 .name = "{cycles:u,instructions:kp}:p",
1452 .check = test__group4,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001453 .id = 31,
Jiri Olsa905f5ee2012-08-08 12:23:52 +02001454 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001455 {
Jiri Olsa905f5ee2012-08-08 12:23:52 +02001456 .name = "{cycles,instructions}:G,{cycles:G,instructions:G},cycles",
1457 .check = test__group5,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001458 .id = 32,
Jiri Olsa905f5ee2012-08-08 12:23:52 +02001459 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001460 {
Jiri Olsa82ce75d2012-12-17 14:08:38 +01001461 .name = "*:*",
1462 .check = test__all_tracepoints,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001463 .id = 33,
Jiri Olsa82ce75d2012-12-17 14:08:38 +01001464 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001465 {
Jiri Olsa5a30a992013-02-04 10:56:43 +01001466 .name = "{cycles,cache-misses:G}:H",
1467 .check = test__group_gh1,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001468 .id = 34,
Jiri Olsa5a30a992013-02-04 10:56:43 +01001469 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001470 {
Jiri Olsa5a30a992013-02-04 10:56:43 +01001471 .name = "{cycles,cache-misses:H}:G",
1472 .check = test__group_gh2,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001473 .id = 35,
Jiri Olsa5a30a992013-02-04 10:56:43 +01001474 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001475 {
Jiri Olsa5a30a992013-02-04 10:56:43 +01001476 .name = "{cycles:G,cache-misses:H}:u",
1477 .check = test__group_gh3,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001478 .id = 36,
Jiri Olsa5a30a992013-02-04 10:56:43 +01001479 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001480 {
Jiri Olsa5a30a992013-02-04 10:56:43 +01001481 .name = "{cycles:G,cache-misses:H}:uG",
1482 .check = test__group_gh4,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001483 .id = 37,
Jiri Olsa5a30a992013-02-04 10:56:43 +01001484 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001485 {
Jiri Olsaa9f93f92013-02-01 20:37:11 +01001486 .name = "{cycles,cache-misses,branch-misses}:S",
1487 .check = test__leader_sample1,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001488 .id = 38,
Jiri Olsaa9f93f92013-02-01 20:37:11 +01001489 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001490 {
Jiri Olsaa9f93f92013-02-01 20:37:11 +01001491 .name = "{instructions,branch-misses}:Su",
1492 .check = test__leader_sample2,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001493 .id = 39,
Jiri Olsaa9f93f92013-02-01 20:37:11 +01001494 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001495 {
Michael Ellermanc9ee7802013-08-06 23:28:06 +10001496 .name = "instructions:uDp",
1497 .check = test__checkevent_pinned_modifier,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001498 .id = 40,
Michael Ellermanc9ee7802013-08-06 23:28:06 +10001499 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001500 {
Michael Ellermanc9ee7802013-08-06 23:28:06 +10001501 .name = "{cycles,cache-misses,branch-misses}:D",
1502 .check = test__pinned_group,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001503 .id = 41,
Michael Ellermanc9ee7802013-08-06 23:28:06 +10001504 },
Jacob Shinec323982014-05-29 17:26:52 +02001505 {
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 },
Alexander Yaryginc0bc8c62014-04-25 17:34:07 +02001520#if defined(__s390x__)
1521 {
1522 .name = "kvm-s390:kvm_s390_create_vm",
1523 .check = test__checkevent_tracepoint,
1524 .id = 100,
1525 },
1526#endif
Jiri Olsaa1e12da2015-04-07 23:25:14 +02001527 {
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 },
Jiri Olsaf50246e2012-05-21 09:12:49 +02001537};
1538
Arnaldo Carvalho de Melo23b63392013-01-18 16:56:57 -03001539static struct evlist_test test__events_pmu[] = {
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001540 {
Jiri Olsaf50246e2012-05-21 09:12:49 +02001541 .name = "cpu/config=10,config1,config2=3,period=1000/u",
1542 .check = test__checkevent_pmu,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001543 .id = 0,
Jiri Olsaf50246e2012-05-21 09:12:49 +02001544 },
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001545 {
Jiri Olsa6b5fc392012-05-21 09:12:53 +02001546 .name = "cpu/config=1,name=krava/u,cpu/config=2/u",
1547 .check = test__checkevent_pmu_name,
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001548 .id = 1,
Jiri Olsa6b5fc392012-05-21 09:12:53 +02001549 },
Jiri Olsaf50246e2012-05-21 09:12:49 +02001550};
1551
Arnaldo Carvalho de Melo23b63392013-01-18 16:56:57 -03001552struct terms_test {
Jiri Olsa44293922012-06-15 14:31:42 +08001553 const char *str;
1554 __u32 type;
1555 int (*check)(struct list_head *terms);
1556};
1557
Arnaldo Carvalho de Melo23b63392013-01-18 16:56:57 -03001558static struct terms_test test__terms[] = {
Jiri Olsa44293922012-06-15 14:31:42 +08001559 [0] = {
1560 .str = "config=10,config1,config2=3,umask=1",
1561 .check = test__checkterms_simple,
1562 },
1563};
1564
Arnaldo Carvalho de Melo23b63392013-01-18 16:56:57 -03001565static int test_event(struct evlist_test *e)
Jiri Olsaf50246e2012-05-21 09:12:49 +02001566{
1567 struct perf_evlist *evlist;
1568 int ret;
1569
Namhyung Kim334fe7a2013-03-11 16:43:12 +09001570 evlist = perf_evlist__new();
Jiri Olsaf50246e2012-05-21 09:12:49 +02001571 if (evlist == NULL)
1572 return -ENOMEM;
1573
Jiri Olsab39b8392015-04-22 21:10:16 +02001574 ret = parse_events(evlist, e->name, NULL);
Jiri Olsaf50246e2012-05-21 09:12:49 +02001575 if (ret) {
1576 pr_debug("failed to parse event '%s', err %d\n",
1577 e->name, ret);
Arnaldo Carvalho de Melo2d4352c2014-01-03 17:30:04 -03001578 } else {
1579 ret = e->check(evlist);
Jiri Olsaf50246e2012-05-21 09:12:49 +02001580 }
Arnaldo Carvalho de Melo48000a12014-12-17 17:24:45 -03001581
Jiri Olsaf50246e2012-05-21 09:12:49 +02001582 perf_evlist__delete(evlist);
1583
1584 return ret;
1585}
1586
Arnaldo Carvalho de Melo23b63392013-01-18 16:56:57 -03001587static int test_events(struct evlist_test *events, unsigned cnt)
Jiri Olsaf50246e2012-05-21 09:12:49 +02001588{
Robert Richter9bfbbc62012-08-21 20:03:15 +02001589 int ret1, ret2 = 0;
Jiri Olsaf50246e2012-05-21 09:12:49 +02001590 unsigned i;
1591
1592 for (i = 0; i < cnt; i++) {
Arnaldo Carvalho de Melo23b63392013-01-18 16:56:57 -03001593 struct evlist_test *e = &events[i];
Jiri Olsaf50246e2012-05-21 09:12:49 +02001594
Alexander Yarygin615b8f92014-04-25 17:34:06 +02001595 pr_debug("running test %d '%s'\n", e->id, e->name);
Robert Richter9bfbbc62012-08-21 20:03:15 +02001596 ret1 = test_event(e);
1597 if (ret1)
1598 ret2 = ret1;
Jiri Olsa44293922012-06-15 14:31:42 +08001599 }
1600
Robert Richter9bfbbc62012-08-21 20:03:15 +02001601 return ret2;
Jiri Olsa44293922012-06-15 14:31:42 +08001602}
1603
Arnaldo Carvalho de Melo23b63392013-01-18 16:56:57 -03001604static int test_term(struct terms_test *t)
Jiri Olsa44293922012-06-15 14:31:42 +08001605{
David Ahernc549aca2013-07-02 13:27:24 -06001606 struct list_head terms;
Jiri Olsa44293922012-06-15 14:31:42 +08001607 int ret;
1608
David Ahernc549aca2013-07-02 13:27:24 -06001609 INIT_LIST_HEAD(&terms);
Jiri Olsa44293922012-06-15 14:31:42 +08001610
David Ahernc549aca2013-07-02 13:27:24 -06001611 ret = parse_events_terms(&terms, t->str);
Jiri Olsa44293922012-06-15 14:31:42 +08001612 if (ret) {
1613 pr_debug("failed to parse terms '%s', err %d\n",
1614 t->str , ret);
1615 return ret;
1616 }
1617
David Ahernc549aca2013-07-02 13:27:24 -06001618 ret = t->check(&terms);
1619 parse_events__free_terms(&terms);
Jiri Olsa44293922012-06-15 14:31:42 +08001620
1621 return ret;
1622}
1623
Arnaldo Carvalho de Melo23b63392013-01-18 16:56:57 -03001624static int test_terms(struct terms_test *terms, unsigned cnt)
Jiri Olsa44293922012-06-15 14:31:42 +08001625{
1626 int ret = 0;
1627 unsigned i;
1628
1629 for (i = 0; i < cnt; i++) {
Arnaldo Carvalho de Melo23b63392013-01-18 16:56:57 -03001630 struct terms_test *t = &terms[i];
Jiri Olsa44293922012-06-15 14:31:42 +08001631
1632 pr_debug("running test %d '%s'\n", i, t->str);
1633 ret = test_term(t);
Jiri Olsaf50246e2012-05-21 09:12:49 +02001634 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/",
Arnaldo Carvalho de Melocf38fad2013-11-05 14:48:50 -03001648 sysfs__mountpoint());
Jiri Olsaf50246e2012-05-21 09:12:49 +02001649
1650 ret = stat(path, &st);
1651 if (ret)
Masanari Iida3fd44cd2012-07-18 01:20:59 +09001652 pr_debug("omitting PMU cpu tests\n");
Jiri Olsaf50246e2012-05-21 09:12:49 +02001653 return !ret;
1654}
1655
Jiri Olsa3f3a2062012-10-10 14:53:18 +02001656static 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/",
Arnaldo Carvalho de Melocf38fad2013-11-05 14:48:50 -03001665 sysfs__mountpoint());
Jiri Olsa3f3a2062012-10-10 14:53:18 +02001666
1667 ret = stat(path, &st);
1668 if (ret) {
Masanari Iidaa895d572013-04-09 02:06:50 +09001669 pr_debug("omitting PMU cpu events tests\n");
Jiri Olsa3f3a2062012-10-10 14:53:18 +02001670 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
Arnaldo Carvalho de Melo23b63392013-01-18 16:56:57 -03001681 struct evlist_test e;
Jiri Olsa3f3a2062012-10-10 14:53:18 +02001682 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);
Kan Liangffe59782014-10-07 11:08:52 -04001694 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);
Jiri Olsa3f3a2062012-10-10 14:53:18 +02001700#undef MAX_NAME
1701 }
1702
1703 closedir(dir);
1704 return ret;
1705}
1706
Jiri Olsac81251e2012-11-10 01:46:51 +01001707int test__parse_events(void)
Jiri Olsaf50246e2012-05-21 09:12:49 +02001708{
Robert Richter9bfbbc62012-08-21 20:03:15 +02001709 int ret1, ret2 = 0;
Jiri Olsaf50246e2012-05-21 09:12:49 +02001710
Jiri Olsaebf124f2012-07-04 00:00:47 +02001711#define TEST_EVENTS(tests) \
1712do { \
Robert Richter9bfbbc62012-08-21 20:03:15 +02001713 ret1 = test_events(tests, ARRAY_SIZE(tests)); \
1714 if (!ret2) \
1715 ret2 = ret1; \
Jiri Olsaebf124f2012-07-04 00:00:47 +02001716} while (0)
Jiri Olsa44293922012-06-15 14:31:42 +08001717
Jiri Olsaebf124f2012-07-04 00:00:47 +02001718 TEST_EVENTS(test__events);
Jiri Olsa44293922012-06-15 14:31:42 +08001719
Jiri Olsaebf124f2012-07-04 00:00:47 +02001720 if (test_pmu())
1721 TEST_EVENTS(test__events_pmu);
Jiri Olsa44293922012-06-15 14:31:42 +08001722
Jiri Olsa3f3a2062012-10-10 14:53:18 +02001723 if (test_pmu()) {
1724 int ret = test_pmu_events();
1725 if (ret)
1726 return ret;
1727 }
1728
Robert Richter9bfbbc62012-08-21 20:03:15 +02001729 ret1 = test_terms(test__terms, ARRAY_SIZE(test__terms));
1730 if (!ret2)
1731 ret2 = ret1;
1732
1733 return ret2;
Jiri Olsaf50246e2012-05-21 09:12:49 +02001734}