at v3.10-rc3 31 lines 743 B view raw
1#ifndef TESTS_H 2#define TESTS_H 3 4enum { 5 TEST_OK = 0, 6 TEST_FAIL = -1, 7 TEST_SKIP = -2, 8}; 9 10/* Tests */ 11int test__vmlinux_matches_kallsyms(void); 12int test__open_syscall_event(void); 13int test__open_syscall_event_on_all_cpus(void); 14int test__basic_mmap(void); 15int test__PERF_RECORD(void); 16int test__rdpmc(void); 17int test__perf_evsel__roundtrip_name_test(void); 18int test__perf_evsel__tp_sched_test(void); 19int test__syscall_open_tp_fields(void); 20int test__pmu(void); 21int test__attr(void); 22int test__dso_data(void); 23int test__parse_events(void); 24int test__hists_link(void); 25int test__python_use(void); 26int test__bp_signal(void); 27int test__bp_signal_overflow(void); 28int test__task_exit(void); 29int test__sw_clock_freq(void); 30 31#endif /* TESTS_H */