diff options
Diffstat (limited to 'tools/perf/tests/builtin-test.c')
-rw-r--r-- | tools/perf/tests/builtin-test.c | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/tools/perf/tests/builtin-test.c b/tools/perf/tests/builtin-test.c index b11bf8a08430..831f52cae197 100644 --- a/tools/perf/tests/builtin-test.c +++ b/tools/perf/tests/builtin-test.c | |||
@@ -115,7 +115,7 @@ static struct test { | |||
115 | .desc = "Test parsing with no sample_id_all bit set", | 115 | .desc = "Test parsing with no sample_id_all bit set", |
116 | .func = test__parse_no_sample_id_all, | 116 | .func = test__parse_no_sample_id_all, |
117 | }, | 117 | }, |
118 | #if defined(__x86_64__) || defined(__i386__) | 118 | #if defined(__x86_64__) || defined(__i386__) || defined(__arm__) |
119 | #ifdef HAVE_DWARF_UNWIND_SUPPORT | 119 | #ifdef HAVE_DWARF_UNWIND_SUPPORT |
120 | { | 120 | { |
121 | .desc = "Test dwarf unwind", | 121 | .desc = "Test dwarf unwind", |
@@ -124,6 +124,22 @@ static struct test { | |||
124 | #endif | 124 | #endif |
125 | #endif | 125 | #endif |
126 | { | 126 | { |
127 | .desc = "Test filtering hist entries", | ||
128 | .func = test__hists_filter, | ||
129 | }, | ||
130 | { | ||
131 | .desc = "Test mmap thread lookup", | ||
132 | .func = test__mmap_thread_lookup, | ||
133 | }, | ||
134 | { | ||
135 | .desc = "Test thread mg sharing", | ||
136 | .func = test__thread_mg_share, | ||
137 | }, | ||
138 | { | ||
139 | .desc = "Test output sorting of hist entries", | ||
140 | .func = test__hists_output, | ||
141 | }, | ||
142 | { | ||
127 | .func = NULL, | 143 | .func = NULL, |
128 | }, | 144 | }, |
129 | }; | 145 | }; |