Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

perf tests: Add thread_map object tests

Adding thread_map object tests for comm name values.

Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Tested-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/r/1435310967-14570-4-git-send-email-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

authored by

Jiri Olsa and committed by
Arnaldo Carvalho de Melo
134aa44f 792402fd

+44
+1
tools/perf/tests/Build
··· 31 31 perf-y += sample-parsing.o 32 32 perf-y += parse-no-sample-id-all.o 33 33 perf-y += kmod-path.o 34 + perf-y += thread-map.o 34 35 35 36 perf-$(CONFIG_X86) += perf-time-to-tsc.o 36 37
+4
tools/perf/tests/builtin-test.c
··· 171 171 .func = test__kmod_path__parse, 172 172 }, 173 173 { 174 + .desc = "Test thread map", 175 + .func = test__thread_map, 176 + }, 177 + { 174 178 .func = NULL, 175 179 }, 176 180 };
+1
tools/perf/tests/tests.h
··· 61 61 int test__fdarray__filter(void); 62 62 int test__fdarray__add(void); 63 63 int test__kmod_path__parse(void); 64 + int test__thread_map(void); 64 65 65 66 #if defined(__x86_64__) || defined(__i386__) || defined(__arm__) || defined(__aarch64__) 66 67 #ifdef HAVE_DWARF_UNWIND_SUPPORT
+38
tools/perf/tests/thread-map.c
··· 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 + }