Skip to content

Commit

Permalink
perf tests: Add arch tests
Browse files Browse the repository at this point in the history
Tests that only make sense for some architectures currently live in
the same place as the generic tests. Move out the x86-specific tests
into tools/perf/arch/x86/tests and define an 'arch_tests' array, which
is the list of tests that only apply to the build architecture.

The main idea is to encourage developers to add arch tests to build
out perf's test coverage, without dumping everything in
tools/perf/tests.

Signed-off-by: Matt Fleming <matt.fleming@intel.com>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Fenghua Yu <fenghua.yu@intel.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Kanaka Juvva <kanaka.d.juvva@intel.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Vikas Shivappa <vikas.shivappa@intel.com>
Cc: Vince Weaver <vince@deater.net>
Link: http://lkml.kernel.org/n/tip-p4uc1c15ssbj8xj7ku5slpa6@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
  • Loading branch information
Matt Fleming authored and Arnaldo Carvalho de Melo committed Oct 5, 2015
1 parent a1853e2 commit 31b6753
Show file tree
Hide file tree
Showing 6 changed files with 46 additions and 11 deletions.
2 changes: 1 addition & 1 deletion tools/perf/arch/x86/Build
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
libperf-y += util/
libperf-$(CONFIG_DWARF_UNWIND) += tests/
libperf-y += tests/
6 changes: 6 additions & 0 deletions tools/perf/arch/x86/include/arch-tests.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#ifndef ARCH_TESTS_H
#define ARCH_TESTS_H

extern struct test arch_tests[];

#endif
6 changes: 4 additions & 2 deletions tools/perf/arch/x86/tests/Build
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
libperf-y += regs_load.o
libperf-y += dwarf-unwind.o
libperf-$(CONFIG_DWARF_UNWIND) += regs_load.o
libperf-$(CONFIG_DWARF_UNWIND) += dwarf-unwind.o

libperf-y += arch-tests.o
10 changes: 10 additions & 0 deletions tools/perf/arch/x86/tests/arch-tests.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#include <string.h>
#include "tests/tests.h"
#include "arch-tests.h"

struct test arch_tests[] = {
{
.func = NULL,
},

};
28 changes: 20 additions & 8 deletions tools/perf/tests/builtin-test.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,13 @@
#include "parse-options.h"
#include "symbol.h"

static struct test {
const char *desc;
int (*func)(void);
} tests[] = {
struct test __weak arch_tests[] = {
{
.func = NULL,
},
};

static struct test generic_tests[] = {
{
.desc = "vmlinux symtab matches kallsyms",
.func = test__vmlinux_matches_kallsyms,
Expand Down Expand Up @@ -195,6 +198,11 @@ static struct test {
},
};

static struct test *tests[] = {
generic_tests,
arch_tests,
};

static bool perf_test__matches(struct test *test, int curr, int argc, const char *argv[])
{
int i;
Expand Down Expand Up @@ -249,22 +257,25 @@ static int run_test(struct test *test)
return err;
}

#define for_each_test(t) for (t = &tests[0]; t->func; t++)
#define for_each_test(j, t) \
for (j = 0; j < ARRAY_SIZE(tests); j++) \
for (t = &tests[j][0]; t->func; t++)

static int __cmd_test(int argc, const char *argv[], struct intlist *skiplist)
{
struct test *t;
unsigned int j;
int i = 0;
int width = 0;

for_each_test(t) {
for_each_test(j, t) {
int len = strlen(t->desc);

if (width < len)
width = len;
}

for_each_test(t) {
for_each_test(j, t) {
int curr = i++, err;

if (!perf_test__matches(t, curr, argc, argv))
Expand Down Expand Up @@ -300,10 +311,11 @@ static int __cmd_test(int argc, const char *argv[], struct intlist *skiplist)

static int perf_test__list(int argc, const char **argv)
{
unsigned int j;
struct test *t;
int i = 0;

for_each_test(t) {
for_each_test(j, t) {
if (argc > 1 && !strstr(t->desc, argv[1]))
continue;

Expand Down
5 changes: 5 additions & 0 deletions tools/perf/tests/tests.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ enum {
TEST_SKIP = -2,
};

struct test {
const char *desc;
int (*func)(void);
};

/* Tests */
int test__vmlinux_matches_kallsyms(void);
int test__openat_syscall_event(void);
Expand Down

0 comments on commit 31b6753

Please sign in to comment.