Merge tag 'iio-fixes-for-3.9a' of git://git.kernel.org/pub/scm/linux/kernel/git/jic23...
[firefly-linux-kernel-4.4.55.git] / tools / perf / tests / tests.h
1 #ifndef TESTS_H
2 #define TESTS_H
3
4 enum {
5         TEST_OK   =  0,
6         TEST_FAIL = -1,
7         TEST_SKIP = -2,
8 };
9
10 /* Tests */
11 int test__vmlinux_matches_kallsyms(void);
12 int test__open_syscall_event(void);
13 int test__open_syscall_event_on_all_cpus(void);
14 int test__basic_mmap(void);
15 int test__PERF_RECORD(void);
16 int test__rdpmc(void);
17 int test__perf_evsel__roundtrip_name_test(void);
18 int test__perf_evsel__tp_sched_test(void);
19 int test__syscall_open_tp_fields(void);
20 int test__pmu(void);
21 int test__attr(void);
22 int test__dso_data(void);
23 int test__parse_events(void);
24 int test__hists_link(void);
25 int test__python_use(void);
26
27 #endif /* TESTS_H */