tests.h 557 B

12345678910111213141516171819202122
  1. #ifndef TESTS_H
  2. #define TESTS_H
  3. /* Tests */
  4. int test__vmlinux_matches_kallsyms(void);
  5. int test__open_syscall_event(void);
  6. int test__open_syscall_event_on_all_cpus(void);
  7. int test__basic_mmap(void);
  8. int test__PERF_RECORD(void);
  9. int test__rdpmc(void);
  10. int test__perf_evsel__roundtrip_name_test(void);
  11. int test__perf_evsel__tp_sched_test(void);
  12. int test__syscall_open_tp_fields(void);
  13. int test__pmu(void);
  14. int test__attr(void);
  15. int test__dso_data(void);
  16. int test__parse_events(void);
  17. /* Util */
  18. int trace_event__id(const char *evname);
  19. #endif /* TESTS_H */