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

perf tests: Rename tests/map_groups.c to tests/maps.c

One more step in mergint the maps and map_groups structs.

Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Link: https://lkml.kernel.org/n/tip-bw6aagubqxc47m54k2maezfu@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

+5 -5
+1 -1
tools/perf/tests/Build
··· 52 52 perf-y += clang.o 53 53 perf-y += unit_number__scnprintf.o 54 54 perf-y += mem2node.o 55 - perf-y += map_groups.o 55 + perf-y += maps.o 56 56 perf-y += time-utils-test.o 57 57 58 58 $(OUTPUT)tests/llvm-src-base.c: tests/bpf-script-example.c tests/Build
+2 -2
tools/perf/tests/builtin-test.c
··· 297 297 .func = test__time_utils, 298 298 }, 299 299 { 300 - .desc = "map_groups__merge_in", 301 - .func = test__map_groups__merge_in, 300 + .desc = "maps__merge_in", 301 + .func = test__maps__merge_in, 302 302 }, 303 303 { 304 304 .func = NULL,
+1 -1
tools/perf/tests/map_groups.c tools/perf/tests/maps.c
··· 33 33 return TEST_OK; 34 34 } 35 35 36 - int test__map_groups__merge_in(struct test *t __maybe_unused, int subtest __maybe_unused) 36 + int test__maps__merge_in(struct test *t __maybe_unused, int subtest __maybe_unused) 37 37 { 38 38 struct maps maps; 39 39 unsigned int i;
+1 -1
tools/perf/tests/tests.h
··· 107 107 int test__clang_subtest_get_nr(void); 108 108 int test__unit_number__scnprint(struct test *test, int subtest); 109 109 int test__mem2node(struct test *t, int subtest); 110 - int test__map_groups__merge_in(struct test *t, int subtest); 110 + int test__maps__merge_in(struct test *t, int subtest); 111 111 int test__time_utils(struct test *t, int subtest); 112 112 113 113 bool test__bp_signal_is_supported(void);