2012-11-10 07:46:41 +07:00
|
|
|
#ifndef TESTS_H
|
|
|
|
#define TESTS_H
|
|
|
|
|
2013-06-07 20:37:03 +07:00
|
|
|
#define TEST_ASSERT_VAL(text, cond) \
|
|
|
|
do { \
|
|
|
|
if (!(cond)) { \
|
|
|
|
pr_debug("FAILED %s:%d %s\n", __FILE__, __LINE__, text); \
|
|
|
|
return -1; \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
2012-12-19 21:33:39 +07:00
|
|
|
enum {
|
|
|
|
TEST_OK = 0,
|
|
|
|
TEST_FAIL = -1,
|
|
|
|
TEST_SKIP = -2,
|
|
|
|
};
|
|
|
|
|
2012-11-10 07:46:42 +07:00
|
|
|
/* Tests */
|
2012-11-10 07:46:41 +07:00
|
|
|
int test__vmlinux_matches_kallsyms(void);
|
2012-11-10 07:46:42 +07:00
|
|
|
int test__open_syscall_event(void);
|
2012-11-10 07:46:43 +07:00
|
|
|
int test__open_syscall_event_on_all_cpus(void);
|
2012-11-10 07:46:44 +07:00
|
|
|
int test__basic_mmap(void);
|
2012-11-10 07:46:45 +07:00
|
|
|
int test__PERF_RECORD(void);
|
2012-11-10 07:46:46 +07:00
|
|
|
int test__rdpmc(void);
|
2012-11-10 07:46:47 +07:00
|
|
|
int test__perf_evsel__roundtrip_name_test(void);
|
2012-11-10 07:46:48 +07:00
|
|
|
int test__perf_evsel__tp_sched_test(void);
|
2012-11-10 07:46:49 +07:00
|
|
|
int test__syscall_open_tp_fields(void);
|
2012-11-10 07:46:50 +07:00
|
|
|
int test__pmu(void);
|
2012-11-10 07:46:51 +07:00
|
|
|
int test__attr(void);
|
|
|
|
int test__dso_data(void);
|
|
|
|
int test__parse_events(void);
|
2012-12-10 15:29:57 +07:00
|
|
|
int test__hists_link(void);
|
2012-12-14 23:06:13 +07:00
|
|
|
int test__python_use(void);
|
2013-03-11 01:41:10 +07:00
|
|
|
int test__bp_signal(void);
|
2013-03-11 01:41:11 +07:00
|
|
|
int test__bp_signal_overflow(void);
|
2013-03-15 12:58:11 +07:00
|
|
|
int test__task_exit(void);
|
2013-03-18 09:41:47 +07:00
|
|
|
int test__sw_clock_freq(void);
|
2013-06-28 20:22:19 +07:00
|
|
|
int test__perf_time_to_tsc(void);
|
2013-08-07 18:38:45 +07:00
|
|
|
int test__code_reading(void);
|
2013-08-27 15:23:13 +07:00
|
|
|
int test__sample_parsing(void);
|
2013-09-01 01:50:53 +07:00
|
|
|
int test__keep_tracking(void);
|
2013-09-05 03:18:16 +07:00
|
|
|
int test__parse_no_sample_id_all(void);
|
2012-11-10 07:46:42 +07:00
|
|
|
|
2012-11-10 07:46:41 +07:00
|
|
|
#endif /* TESTS_H */
|