diff options
Diffstat (limited to 'tools/perf/tests/tests.h')
| -rw-r--r-- | tools/perf/tests/tests.h | 11 | 
1 files changed, 8 insertions, 3 deletions
diff --git a/tools/perf/tests/tests.h b/tools/perf/tests/tests.h index fc121edab01..5de0be1ff4b 100644 --- a/tools/perf/tests/tests.h +++ b/tools/perf/tests/tests.h @@ -1,6 +1,12 @@  #ifndef TESTS_H  #define TESTS_H +enum { +	TEST_OK   =  0, +	TEST_FAIL = -1, +	TEST_SKIP = -2, +}; +  /* Tests */  int test__vmlinux_matches_kallsyms(void);  int test__open_syscall_event(void); @@ -15,8 +21,7 @@ int test__pmu(void);  int test__attr(void);  int test__dso_data(void);  int test__parse_events(void); - -/* Util */ -int trace_event__id(const char *evname); +int test__hists_link(void); +int test__python_use(void);  #endif /* TESTS_H */  |