diff options
-rw-r--r-- | tools/perf/tests/Build | 1 | ||||
-rw-r--r-- | tools/perf/tests/builtin-test.c | 4 | ||||
-rw-r--r-- | tools/perf/tests/tests.h | 1 | ||||
-rw-r--r-- | tools/perf/tests/thread-map.c | 38 |
4 files changed, 44 insertions, 0 deletions
diff --git a/tools/perf/tests/Build b/tools/perf/tests/Build index ee41e705b2eb..d20d6e6ab65b 100644 --- a/tools/perf/tests/Build +++ b/tools/perf/tests/Build | |||
@@ -31,6 +31,7 @@ perf-y += code-reading.o | |||
31 | perf-y += sample-parsing.o | 31 | perf-y += sample-parsing.o |
32 | perf-y += parse-no-sample-id-all.o | 32 | perf-y += parse-no-sample-id-all.o |
33 | perf-y += kmod-path.o | 33 | perf-y += kmod-path.o |
34 | perf-y += thread-map.o | ||
34 | 35 | ||
35 | perf-$(CONFIG_X86) += perf-time-to-tsc.o | 36 | perf-$(CONFIG_X86) += perf-time-to-tsc.o |
36 | 37 | ||
diff --git a/tools/perf/tests/builtin-test.c b/tools/perf/tests/builtin-test.c index 87b9961646e4..c1dde733c3a6 100644 --- a/tools/perf/tests/builtin-test.c +++ b/tools/perf/tests/builtin-test.c | |||
@@ -171,6 +171,10 @@ static struct test { | |||
171 | .func = test__kmod_path__parse, | 171 | .func = test__kmod_path__parse, |
172 | }, | 172 | }, |
173 | { | 173 | { |
174 | .desc = "Test thread map", | ||
175 | .func = test__thread_map, | ||
176 | }, | ||
177 | { | ||
174 | .func = NULL, | 178 | .func = NULL, |
175 | }, | 179 | }, |
176 | }; | 180 | }; |
diff --git a/tools/perf/tests/tests.h b/tools/perf/tests/tests.h index 8e5038b48ba8..ebb47d96bc0b 100644 --- a/tools/perf/tests/tests.h +++ b/tools/perf/tests/tests.h | |||
@@ -61,6 +61,7 @@ int test__switch_tracking(void); | |||
61 | int test__fdarray__filter(void); | 61 | int test__fdarray__filter(void); |
62 | int test__fdarray__add(void); | 62 | int test__fdarray__add(void); |
63 | int test__kmod_path__parse(void); | 63 | int test__kmod_path__parse(void); |
64 | int test__thread_map(void); | ||
64 | 65 | ||
65 | #if defined(__x86_64__) || defined(__i386__) || defined(__arm__) || defined(__aarch64__) | 66 | #if defined(__x86_64__) || defined(__i386__) || defined(__arm__) || defined(__aarch64__) |
66 | #ifdef HAVE_DWARF_UNWIND_SUPPORT | 67 | #ifdef HAVE_DWARF_UNWIND_SUPPORT |
diff --git a/tools/perf/tests/thread-map.c b/tools/perf/tests/thread-map.c new file mode 100644 index 000000000000..5acf000939ea --- /dev/null +++ b/tools/perf/tests/thread-map.c | |||
@@ -0,0 +1,38 @@ | |||
1 | #include <sys/types.h> | ||
2 | #include <unistd.h> | ||
3 | #include "tests.h" | ||
4 | #include "thread_map.h" | ||
5 | #include "debug.h" | ||
6 | |||
7 | int test__thread_map(void) | ||
8 | { | ||
9 | struct thread_map *map; | ||
10 | |||
11 | /* test map on current pid */ | ||
12 | map = thread_map__new_by_pid(getpid()); | ||
13 | TEST_ASSERT_VAL("failed to alloc map", map); | ||
14 | |||
15 | thread_map__read_comms(map); | ||
16 | |||
17 | TEST_ASSERT_VAL("wrong nr", map->nr == 1); | ||
18 | TEST_ASSERT_VAL("wrong pid", | ||
19 | thread_map__pid(map, 0) == getpid()); | ||
20 | TEST_ASSERT_VAL("wrong comm", | ||
21 | thread_map__comm(map, 0) && | ||
22 | !strcmp(thread_map__comm(map, 0), "perf")); | ||
23 | thread_map__put(map); | ||
24 | |||
25 | /* test dummy pid */ | ||
26 | map = thread_map__new_dummy(); | ||
27 | TEST_ASSERT_VAL("failed to alloc map", map); | ||
28 | |||
29 | thread_map__read_comms(map); | ||
30 | |||
31 | TEST_ASSERT_VAL("wrong nr", map->nr == 1); | ||
32 | TEST_ASSERT_VAL("wrong pid", thread_map__pid(map, 0) == -1); | ||
33 | TEST_ASSERT_VAL("wrong comm", | ||
34 | thread_map__comm(map, 0) && | ||
35 | !strcmp(thread_map__comm(map, 0), "dummy")); | ||
36 | thread_map__put(map); | ||
37 | return 0; | ||
38 | } | ||