aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/arch/arm64/tests/arch-tests.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf/arch/arm64/tests/arch-tests.c')
-rw-r--r--tools/perf/arch/arm64/tests/arch-tests.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/perf/arch/arm64/tests/arch-tests.c b/tools/perf/arch/arm64/tests/arch-tests.c
new file mode 100644
index 000000000000..5b1543c98022
--- /dev/null
+++ b/tools/perf/arch/arm64/tests/arch-tests.c
@@ -0,0 +1,16 @@
+// 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
+ {
+ .func = NULL,
+ },
+};