| Jiri Olsa | 0a4e1ae | 2012-11-10 01:46:41 +0100 | [diff] [blame] | 1 | #ifndef TESTS_H |
| 2 | #define TESTS_H | ||||
| 3 | |||||
| Jiri Olsa | f4c1ea5 | 2012-12-19 11:33:39 -0300 | [diff] [blame] | 4 | enum { |
| 5 | TEST_OK = 0, | ||||
| 6 | TEST_FAIL = -1, | ||||
| 7 | TEST_SKIP = -2, | ||||
| 8 | }; | ||||
| 9 | |||||
| Jiri Olsa | d3b59a3 | 2012-11-10 01:46:42 +0100 | [diff] [blame] | 10 | /* Tests */ |
| Jiri Olsa | 0a4e1ae | 2012-11-10 01:46:41 +0100 | [diff] [blame] | 11 | int test__vmlinux_matches_kallsyms(void); |
| Jiri Olsa | d3b59a3 | 2012-11-10 01:46:42 +0100 | [diff] [blame] | 12 | int test__open_syscall_event(void); |
| Jiri Olsa | bd90517 | 2012-11-10 01:46:43 +0100 | [diff] [blame] | 13 | int test__open_syscall_event_on_all_cpus(void); |
| Jiri Olsa | a65b9c6 | 2012-11-10 01:46:44 +0100 | [diff] [blame] | 14 | int test__basic_mmap(void); |
| Jiri Olsa | 16d00fe | 2012-11-10 01:46:45 +0100 | [diff] [blame] | 15 | int test__PERF_RECORD(void); |
| Jiri Olsa | bacf7e5 | 2012-11-10 01:46:46 +0100 | [diff] [blame] | 16 | int test__rdpmc(void); |
| Jiri Olsa | cfffae2 | 2012-11-10 01:46:47 +0100 | [diff] [blame] | 17 | int test__perf_evsel__roundtrip_name_test(void); |
| Jiri Olsa | 5e24a09 | 2012-11-10 01:46:48 +0100 | [diff] [blame] | 18 | int test__perf_evsel__tp_sched_test(void); |
| Jiri Olsa | dc447ee | 2012-11-10 01:46:49 +0100 | [diff] [blame] | 19 | int test__syscall_open_tp_fields(void); |
| Jiri Olsa | cff7f95 | 2012-11-10 01:46:50 +0100 | [diff] [blame] | 20 | int test__pmu(void); |
| Jiri Olsa | c81251e | 2012-11-10 01:46:51 +0100 | [diff] [blame] | 21 | int test__attr(void); |
| 22 | int test__dso_data(void); | ||||
| 23 | int test__parse_events(void); | ||||
| Namhyung Kim | f8ebb0c | 2012-12-10 17:29:57 +0900 | [diff] [blame] | 24 | int test__hists_link(void); |
| Arnaldo Carvalho de Melo | 54359d3 | 2012-12-14 13:06:13 -0300 | [diff] [blame] | 25 | int test__python_use(void); |
| Jiri Olsa | 5a6bef4 | 2013-03-10 19:41:10 +0100 | [diff] [blame] | 26 | int test__bp_signal(void); |
| Jiri Olsa | 06933e3 | 2013-03-10 19:41:11 +0100 | [diff] [blame] | 27 | int test__bp_signal_overflow(void); |
| Namhyung Kim | d723a55 | 2013-03-15 14:58:11 +0900 | [diff] [blame] | 28 | int test__task_exit(void); |
| Namhyung Kim | bc96b36 | 2013-03-18 11:41:47 +0900 | [diff] [blame] | 29 | int test__sw_clock_freq(void); |
| Jiri Olsa | d3b59a3 | 2012-11-10 01:46:42 +0100 | [diff] [blame] | 30 | |
| Jiri Olsa | 0a4e1ae | 2012-11-10 01:46:41 +0100 | [diff] [blame] | 31 | #endif /* TESTS_H */ |