blob: b3423c744f46251ca8966f3d3f32ba970b52773f [file] [log] [blame]
Jiri Olsa38af91f2016-12-12 11:35:41 +01001#include <stdlib.h>
Jiri Olsa134aa442015-06-26 11:29:08 +02002#include <sys/types.h>
3#include <unistd.h>
Jiri Olsa8fbc38a2016-06-28 13:29:03 +02004#include <sys/prctl.h>
Jiri Olsa134aa442015-06-26 11:29:08 +02005#include "tests.h"
6#include "thread_map.h"
7#include "debug.h"
8
Jiri Olsa8fbc38a2016-06-28 13:29:03 +02009#define NAME (const char *) "perf"
10#define NAMEUL (unsigned long) NAME
11
Arnaldo Carvalho de Melo81f17c92017-08-03 15:16:31 -030012int test__thread_map(struct test *test __maybe_unused, int subtest __maybe_unused)
Jiri Olsa134aa442015-06-26 11:29:08 +020013{
14 struct thread_map *map;
15
Jiri Olsa8fbc38a2016-06-28 13:29:03 +020016 TEST_ASSERT_VAL("failed to set process name",
17 !prctl(PR_SET_NAME, NAMEUL, 0, 0, 0));
18
Jiri Olsa134aa442015-06-26 11:29:08 +020019 /* test map on current pid */
20 map = thread_map__new_by_pid(getpid());
21 TEST_ASSERT_VAL("failed to alloc map", map);
22
23 thread_map__read_comms(map);
24
25 TEST_ASSERT_VAL("wrong nr", map->nr == 1);
26 TEST_ASSERT_VAL("wrong pid",
27 thread_map__pid(map, 0) == getpid());
28 TEST_ASSERT_VAL("wrong comm",
29 thread_map__comm(map, 0) &&
Jiri Olsa8fbc38a2016-06-28 13:29:03 +020030 !strcmp(thread_map__comm(map, 0), NAME));
Jiri Olsa35318d22015-07-21 14:31:21 +020031 TEST_ASSERT_VAL("wrong refcnt",
Elena Reshetova364fed32017-02-21 17:35:03 +020032 refcount_read(&map->refcnt) == 1);
Jiri Olsa134aa442015-06-26 11:29:08 +020033 thread_map__put(map);
34
35 /* test dummy pid */
36 map = thread_map__new_dummy();
37 TEST_ASSERT_VAL("failed to alloc map", map);
38
39 thread_map__read_comms(map);
40
41 TEST_ASSERT_VAL("wrong nr", map->nr == 1);
42 TEST_ASSERT_VAL("wrong pid", thread_map__pid(map, 0) == -1);
43 TEST_ASSERT_VAL("wrong comm",
44 thread_map__comm(map, 0) &&
45 !strcmp(thread_map__comm(map, 0), "dummy"));
Jiri Olsa35318d22015-07-21 14:31:21 +020046 TEST_ASSERT_VAL("wrong refcnt",
Elena Reshetova364fed32017-02-21 17:35:03 +020047 refcount_read(&map->refcnt) == 1);
Jiri Olsa134aa442015-06-26 11:29:08 +020048 thread_map__put(map);
49 return 0;
50}
Jiri Olsa99471c92015-10-25 15:51:20 +010051
52static int process_event(struct perf_tool *tool __maybe_unused,
53 union perf_event *event,
54 struct perf_sample *sample __maybe_unused,
55 struct machine *machine __maybe_unused)
56{
57 struct thread_map_event *map = &event->thread_map;
Jiri Olsa59660942015-10-25 15:51:21 +010058 struct thread_map *threads;
Jiri Olsa99471c92015-10-25 15:51:20 +010059
60 TEST_ASSERT_VAL("wrong nr", map->nr == 1);
61 TEST_ASSERT_VAL("wrong pid", map->entries[0].pid == (u64) getpid());
Jiri Olsa8fbc38a2016-06-28 13:29:03 +020062 TEST_ASSERT_VAL("wrong comm", !strcmp(map->entries[0].comm, NAME));
Jiri Olsa59660942015-10-25 15:51:21 +010063
64 threads = thread_map__new_event(&event->thread_map);
65 TEST_ASSERT_VAL("failed to alloc map", threads);
66
67 TEST_ASSERT_VAL("wrong nr", threads->nr == 1);
68 TEST_ASSERT_VAL("wrong pid",
69 thread_map__pid(threads, 0) == getpid());
70 TEST_ASSERT_VAL("wrong comm",
71 thread_map__comm(threads, 0) &&
Jiri Olsa8fbc38a2016-06-28 13:29:03 +020072 !strcmp(thread_map__comm(threads, 0), NAME));
Jiri Olsa59660942015-10-25 15:51:21 +010073 TEST_ASSERT_VAL("wrong refcnt",
Elena Reshetova364fed32017-02-21 17:35:03 +020074 refcount_read(&threads->refcnt) == 1);
Jiri Olsa59660942015-10-25 15:51:21 +010075 thread_map__put(threads);
Jiri Olsa99471c92015-10-25 15:51:20 +010076 return 0;
77}
78
Arnaldo Carvalho de Melo81f17c92017-08-03 15:16:31 -030079int test__thread_map_synthesize(struct test *test __maybe_unused, int subtest __maybe_unused)
Jiri Olsa99471c92015-10-25 15:51:20 +010080{
81 struct thread_map *threads;
82
Jiri Olsa8fbc38a2016-06-28 13:29:03 +020083 TEST_ASSERT_VAL("failed to set process name",
84 !prctl(PR_SET_NAME, NAMEUL, 0, 0, 0));
85
Jiri Olsa99471c92015-10-25 15:51:20 +010086 /* test map on current pid */
87 threads = thread_map__new_by_pid(getpid());
88 TEST_ASSERT_VAL("failed to alloc map", threads);
89
90 thread_map__read_comms(threads);
91
92 TEST_ASSERT_VAL("failed to synthesize map",
93 !perf_event__synthesize_thread_map2(NULL, threads, process_event, NULL));
94
95 return 0;
96}
Jiri Olsa38af91f2016-12-12 11:35:41 +010097
Arnaldo Carvalho de Melo81f17c92017-08-03 15:16:31 -030098int test__thread_map_remove(struct test *test __maybe_unused, int subtest __maybe_unused)
Jiri Olsa38af91f2016-12-12 11:35:41 +010099{
100 struct thread_map *threads;
101 char *str;
102 int i;
103
104 TEST_ASSERT_VAL("failed to allocate map string",
105 asprintf(&str, "%d,%d", getpid(), getppid()) >= 0);
106
107 threads = thread_map__new_str(str, NULL, 0);
108
109 TEST_ASSERT_VAL("failed to allocate thread_map",
110 threads);
111
Namhyung Kimbb963e12017-02-17 17:17:38 +0900112 if (verbose > 0)
Jiri Olsa38af91f2016-12-12 11:35:41 +0100113 thread_map__fprintf(threads, stderr);
114
115 TEST_ASSERT_VAL("failed to remove thread",
116 !thread_map__remove(threads, 0));
117
118 TEST_ASSERT_VAL("thread_map count != 1", threads->nr == 1);
119
Namhyung Kimbb963e12017-02-17 17:17:38 +0900120 if (verbose > 0)
Jiri Olsa38af91f2016-12-12 11:35:41 +0100121 thread_map__fprintf(threads, stderr);
122
123 TEST_ASSERT_VAL("failed to remove thread",
124 !thread_map__remove(threads, 0));
125
126 TEST_ASSERT_VAL("thread_map count != 0", threads->nr == 0);
127
Namhyung Kimbb963e12017-02-17 17:17:38 +0900128 if (verbose > 0)
Jiri Olsa38af91f2016-12-12 11:35:41 +0100129 thread_map__fprintf(threads, stderr);
130
131 TEST_ASSERT_VAL("failed to not remove thread",
132 thread_map__remove(threads, 0));
133
134 for (i = 0; i < threads->nr; i++)
135 free(threads->map[i].comm);
136
137 free(threads);
138 return 0;
139}