Home | History | Annotate | Download | only in tests
      1 #ifndef TESTS_H
      2 #define TESTS_H
      3 
      4 #define TEST_ASSERT_VAL(text, cond)					 \
      5 do {									 \
      6 	if (!(cond)) {							 \
      7 		pr_debug("FAILED %s:%d %s\n", __FILE__, __LINE__, text); \
      8 		return -1;						 \
      9 	}								 \
     10 } while (0)
     11 
     12 enum {
     13 	TEST_OK   =  0,
     14 	TEST_FAIL = -1,
     15 	TEST_SKIP = -2,
     16 };
     17 
     18 /* Tests */
     19 int test__vmlinux_matches_kallsyms(void);
     20 int test__open_syscall_event(void);
     21 int test__open_syscall_event_on_all_cpus(void);
     22 int test__basic_mmap(void);
     23 int test__PERF_RECORD(void);
     24 int test__rdpmc(void);
     25 int test__perf_evsel__roundtrip_name_test(void);
     26 int test__perf_evsel__tp_sched_test(void);
     27 int test__syscall_open_tp_fields(void);
     28 int test__pmu(void);
     29 int test__attr(void);
     30 int test__dso_data(void);
     31 int test__parse_events(void);
     32 int test__hists_link(void);
     33 int test__python_use(void);
     34 int test__bp_signal(void);
     35 int test__bp_signal_overflow(void);
     36 int test__task_exit(void);
     37 int test__sw_clock_freq(void);
     38 int test__perf_time_to_tsc(void);
     39 int test__code_reading(void);
     40 int test__sample_parsing(void);
     41 int test__keep_tracking(void);
     42 int test__parse_no_sample_id_all(void);
     43 
     44 #endif /* TESTS_H */
     45