summaryrefslogtreecommitdiffstats
path: root/tools/perf/arch/arm/tests/arch-tests.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf/arch/arm/tests/arch-tests.c')
-rw-r--r--tools/perf/arch/arm/tests/arch-tests.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/tools/perf/arch/arm/tests/arch-tests.c b/tools/perf/arch/arm/tests/arch-tests.c
new file mode 100644
index 000000000..6848101a8
--- /dev/null
+++ b/tools/perf/arch/arm/tests/arch-tests.c
@@ -0,0 +1,20 @@
+// SPDX-License-Identifier: GPL-2.0
+#include <string.h>
+#include "tests/tests.h"
+#include "arch-tests.h"
+
+struct test arch_tests[] = {
+#ifdef HAVE_DWARF_UNWIND_SUPPORT
+ {
+ .desc = "DWARF unwind",
+ .func = test__dwarf_unwind,
+ },
+#endif
+ {
+ .desc = "Vectors page",
+ .func = test__vectors_page,
+ },
+ {
+ .func = NULL,
+ },
+};