summaryrefslogtreecommitdiff
path: root/tools/perf/config/feature-checks/test-all.c
diff options
context:
space:
mode:
authorJiri Olsa <jolsa@redhat.com>2014-02-19 19:52:56 +0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2014-02-24 16:29:36 +0400
commit45757895c785e0a4c10afd5670cdc26cea2bbc97 (patch)
tree1c97c6d8f651a4ab316e124526a1def2e0efafd7 /tools/perf/config/feature-checks/test-all.c
parent7a0447d61d2d754988add992be2b46d4587ae86a (diff)
downloadlinux-45757895c785e0a4c10afd5670cdc26cea2bbc97.tar.xz
perf tools: Add feature check for libdw dwarf unwind
Adding feature check test code for libdw dwarf unwind. Signed-off-by: Jiri Olsa <jolsa@redhat.com> Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com> Cc: David Ahern <dsahern@gmail.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Ingo Molnar <mingo@kernel.org> Cc: Jean Pihet <jean.pihet@linaro.org> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Link: http://lkml.kernel.org/r/1392825179-5228-4-git-send-email-jolsa@redhat.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/config/feature-checks/test-all.c')
-rw-r--r--tools/perf/config/feature-checks/test-all.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/perf/config/feature-checks/test-all.c b/tools/perf/config/feature-checks/test-all.c
index 9b8a544155bb..fc37eb3ca17b 100644
--- a/tools/perf/config/feature-checks/test-all.c
+++ b/tools/perf/config/feature-checks/test-all.c
@@ -89,6 +89,10 @@
# include "test-stackprotector-all.c"
#undef main
+#define main main_test_libdw_dwarf_unwind
+# include "test-libdw-dwarf-unwind.c"
+#undef main
+
int main(int argc, char *argv[])
{
main_test_libpython();
@@ -111,6 +115,7 @@ int main(int argc, char *argv[])
main_test_libnuma();
main_test_timerfd();
main_test_stackprotector_all();
+ main_test_libdw_dwarf_unwind();
return 0;
}