tests.h 2.0 KB

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