proc: Add proc_mkdir_data()
[linux-2.6.git] / tools / perf / tests / tests.h
blob5de0be1ff4b614112c22e7c65d3a9808596ae9bc
1 #ifndef TESTS_H
2 #define TESTS_H
4 enum {
5 TEST_OK = 0,
6 TEST_FAIL = -1,
7 TEST_SKIP = -2,
8 };
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);
27 #endif /* TESTS_H */