2012-11-10 01:46:41 +01:00
|
|
|
#ifndef TESTS_H
|
|
|
|
#define TESTS_H
|
|
|
|
|
2012-12-19 15:33:39 +01:00
|
|
|
enum {
|
|
|
|
TEST_OK = 0,
|
|
|
|
TEST_FAIL = -1,
|
|
|
|
TEST_SKIP = -2,
|
|
|
|
};
|
|
|
|
|
2012-11-10 01:46:42 +01:00
|
|
|
/* Tests */
|
2012-11-10 01:46:41 +01:00
|
|
|
int test__vmlinux_matches_kallsyms(void);
|
2012-11-10 01:46:42 +01:00
|
|
|
int test__open_syscall_event(void);
|
2012-11-10 01:46:43 +01:00
|
|
|
int test__open_syscall_event_on_all_cpus(void);
|
2012-11-10 01:46:44 +01:00
|
|
|
int test__basic_mmap(void);
|
2012-11-10 01:46:45 +01:00
|
|
|
int test__PERF_RECORD(void);
|
2012-11-10 01:46:46 +01:00
|
|
|
int test__rdpmc(void);
|
2012-11-10 01:46:47 +01:00
|
|
|
int test__perf_evsel__roundtrip_name_test(void);
|
2012-11-10 01:46:48 +01:00
|
|
|
int test__perf_evsel__tp_sched_test(void);
|
2012-11-10 01:46:49 +01:00
|
|
|
int test__syscall_open_tp_fields(void);
|
2012-11-10 01:46:50 +01:00
|
|
|
int test__pmu(void);
|
2012-11-10 01:46:51 +01:00
|
|
|
int test__attr(void);
|
|
|
|
int test__dso_data(void);
|
|
|
|
int test__parse_events(void);
|
2012-12-10 09:29:57 +01:00
|
|
|
int test__hists_link(void);
|
2012-12-14 17:06:13 +01:00
|
|
|
int test__python_use(void);
|
2012-11-10 01:46:42 +01:00
|
|
|
|
2012-11-10 01:46:41 +01:00
|
|
|
#endif /* TESTS_H */
|