aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/arch/powerpc/tests/arch-tests.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf/arch/powerpc/tests/arch-tests.c')
-rw-r--r--tools/perf/arch/powerpc/tests/arch-tests.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/tools/perf/arch/powerpc/tests/arch-tests.c b/tools/perf/arch/powerpc/tests/arch-tests.c
new file mode 100644
index 000000000000..e24f46241f40
--- /dev/null
+++ b/tools/perf/arch/powerpc/tests/arch-tests.c
@@ -0,0 +1,15 @@
+#include <string.h>
+#include "tests/tests.h"
+#include "arch-tests.h"
+
+struct test arch_tests[] = {
+#ifdef HAVE_DWARF_UNWIND_SUPPORT
+ {
+ .desc = "Test dwarf unwind",
+ .func = test__dwarf_unwind,
+ },
+#endif
+ {
+ .func = NULL,
+ },
+};