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 #define TEST_ASSERT_EQUAL(text, val, expected) \ 13 do { \ 14 if (val != expected) { \ 15 pr_debug("FAILED %s:%d %s (%d != %d)\n", \ 16 __FILE__, __LINE__, text, val, expected); \ 17 return -1; \ 18 } \ 19 } while (0) 20 21 enum { 22 TEST_OK = 0, 23 TEST_FAIL = -1, 24 TEST_SKIP = -2, 25 }; 26 27 struct test { 28 const char *desc; 29 int (*func)(void); 30 }; 31 32 /* Tests */ 33 int test__vmlinux_matches_kallsyms(void); 34 int test__openat_syscall_event(void); 35 int test__openat_syscall_event_on_all_cpus(void); 36 int test__basic_mmap(void); 37 int test__PERF_RECORD(void); 38 int test__perf_evsel__roundtrip_name_test(void); 39 int test__perf_evsel__tp_sched_test(void); 40 int test__syscall_openat_tp_fields(void); 41 int test__pmu(void); 42 int test__attr(void); 43 int test__dso_data(void); 44 int test__dso_data_cache(void); 45 int test__dso_data_reopen(void); 46 int test__parse_events(void); 47 int test__hists_link(void); 48 int test__python_use(void); 49 int test__bp_signal(void); 50 int test__bp_signal_overflow(void); 51 int test__task_exit(void); 52 int test__sw_clock_freq(void); 53 int test__code_reading(void); 54 int test__sample_parsing(void); 55 int test__keep_tracking(void); 56 int test__parse_no_sample_id_all(void); 57 int test__dwarf_unwind(void); 58 int test__hists_filter(void); 59 int test__mmap_thread_lookup(void); 60 int test__thread_mg_share(void); 61 int test__hists_output(void); 62 int test__hists_cumulate(void); 63 int test__switch_tracking(void); 64 int test__fdarray__filter(void); 65 int test__fdarray__add(void); 66 int test__kmod_path__parse(void); 67 int test__thread_map(void); 68 int test__llvm(void); 69 int test__bpf(void); 70 int test_session_topology(void); 71 72 #if defined(__arm__) || defined(__aarch64__) 73 #ifdef HAVE_DWARF_UNWIND_SUPPORT 74 struct thread; 75 struct perf_sample; 76 int test__arch_unwind_sample(struct perf_sample *sample, 77 struct thread *thread); 78 #endif 79 #endif 80 #endif /* TESTS_H */ 81