perf tests: Omit end of the symbol check failure for test 1
[linux-2.6-block.git] / tools / perf / tests / tests.h
CommitLineData
0a4e1ae6
JO
1#ifndef TESTS_H
2#define TESTS_H
3
f4c1ea5f
JO
4enum {
5 TEST_OK = 0,
6 TEST_FAIL = -1,
7 TEST_SKIP = -2,
8};
9
d3b59a38 10/* Tests */
0a4e1ae6 11int test__vmlinux_matches_kallsyms(void);
d3b59a38 12int test__open_syscall_event(void);
bd90517b 13int test__open_syscall_event_on_all_cpus(void);
a65b9c62 14int test__basic_mmap(void);
16d00fee 15int test__PERF_RECORD(void);
bacf7e5d 16int test__rdpmc(void);
cfffae2e 17int test__perf_evsel__roundtrip_name_test(void);
5e24a090 18int test__perf_evsel__tp_sched_test(void);
dc447eed 19int test__syscall_open_tp_fields(void);
cff7f956 20int test__pmu(void);
c81251e8
JO
21int test__attr(void);
22int test__dso_data(void);
23int test__parse_events(void);
f8ebb0cd 24int test__hists_link(void);
54359d33 25int test__python_use(void);
5a6bef47 26int test__bp_signal(void);
06933e3a 27int test__bp_signal_overflow(void);
d723a550 28int test__task_exit(void);
bc96b361 29int test__sw_clock_freq(void);
d3b59a38 30
0a4e1ae6 31#endif /* TESTS_H */