tests.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. #ifndef TESTS_H
  2. #define TESTS_H
  3. #define TEST_ASSERT_VAL(text, cond) \
  4. do { \
  5. if (!(cond)) { \
  6. pr_debug("FAILED %s:%d %s\n", __FILE__, __LINE__, text); \
  7. return -1; \
  8. } \
  9. } while (0)
  10. enum {
  11. TEST_OK = 0,
  12. TEST_FAIL = -1,
  13. TEST_SKIP = -2,
  14. };
  15. /* Tests */
  16. int test__vmlinux_matches_kallsyms(void);
  17. int test__open_syscall_event(void);
  18. int test__open_syscall_event_on_all_cpus(void);
  19. int test__basic_mmap(void);
  20. int test__PERF_RECORD(void);
  21. int test__rdpmc(void);
  22. int test__perf_evsel__roundtrip_name_test(void);
  23. int test__perf_evsel__tp_sched_test(void);
  24. int test__syscall_open_tp_fields(void);
  25. int test__pmu(void);
  26. int test__attr(void);
  27. int test__dso_data(void);
  28. int test__dso_data_cache(void);
  29. int test__dso_data_reopen(void);
  30. int test__parse_events(void);
  31. int test__hists_link(void);
  32. int test__python_use(void);
  33. int test__bp_signal(void);
  34. int test__bp_signal_overflow(void);
  35. int test__task_exit(void);
  36. int test__sw_clock_freq(void);
  37. int test__perf_time_to_tsc(void);
  38. int test__code_reading(void);
  39. int test__sample_parsing(void);
  40. int test__keep_tracking(void);
  41. int test__parse_no_sample_id_all(void);
  42. int test__dwarf_unwind(void);
  43. int test__hists_filter(void);
  44. int test__mmap_thread_lookup(void);
  45. int test__thread_mg_share(void);
  46. int test__hists_output(void);
  47. int test__hists_cumulate(void);
  48. int test__switch_tracking(void);
  49. int test__fdarray__filter(void);
  50. int test__fdarray__add(void);
  51. #if defined(__x86_64__) || defined(__i386__) || defined(__arm__)
  52. #ifdef HAVE_DWARF_UNWIND_SUPPORT
  53. struct thread;
  54. struct perf_sample;
  55. int test__arch_unwind_sample(struct perf_sample *sample,
  56. struct thread *thread);
  57. #endif
  58. #endif
  59. #endif /* TESTS_H */