summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/libunwind/libunwind/0001-add-knobs-to-disable-enable-tests.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-support/libunwind/libunwind/0001-add-knobs-to-disable-enable-tests.patch')
-rw-r--r--meta/recipes-support/libunwind/libunwind/0001-add-knobs-to-disable-enable-tests.patch69
1 files changed, 69 insertions, 0 deletions
diff --git a/meta/recipes-support/libunwind/libunwind/0001-add-knobs-to-disable-enable-tests.patch b/meta/recipes-support/libunwind/libunwind/0001-add-knobs-to-disable-enable-tests.patch
new file mode 100644
index 0000000000..673a5bb995
--- /dev/null
+++ b/meta/recipes-support/libunwind/libunwind/0001-add-knobs-to-disable-enable-tests.patch
@@ -0,0 +1,69 @@
1From 459e471fcc33d300f7bbcdaf3e0dc338d9dc15b9 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Sat, 30 Apr 2016 16:56:34 +0000
4Subject: [PATCH] add knobs to disable/enable tests
5
6Some tests do not compile on musl libc
7in general its good to have such a knob
8since not all builds may want to enable
9tests
10
11Upstream-Status: Pending
12
13Signed-off-by: Khem Raj <raj.khem@gmail.com>
14---
15 Makefile.am | 6 +++++-
16 configure.ac | 12 ++++++++++--
17 2 files changed, 15 insertions(+), 3 deletions(-)
18
19diff --git a/Makefile.am b/Makefile.am
20index 6a3ed9e..0c29b3e 100644
21--- a/Makefile.am
22+++ b/Makefile.am
23@@ -42,7 +42,11 @@ endif
24
25 nodist_include_HEADERS = include/libunwind-common.h
26
27-SUBDIRS = src tests
28+SUBDIRS = src
29+
30+if CONFIG_TESTS
31+SUBDIRS += tests
32+endif
33
34 if CONFIG_DOCS
35 SUBDIRS += doc
36diff --git a/configure.ac b/configure.ac
37index 85d78f8..d362387 100644
38--- a/configure.ac
39+++ b/configure.ac
40@@ -129,6 +129,10 @@ AC_ARG_ENABLE(documentation,
41 AS_HELP_STRING([--disable-documentation],[Disable generating the man pages]),,
42 [enable_documentation=yes])
43
44+AC_ARG_ENABLE(tests,
45+ AS_HELP_STRING([--disable-tests],[Disable building tests]),,
46+ [enable_tests=yes])
47+
48 AC_MSG_CHECKING([if we should build libunwind-setjmp])
49 AC_MSG_RESULT([$enable_setjmp])
50
51@@ -395,9 +399,13 @@ AM_CONDITIONAL([CONFIG_DOCS], [test x$enable_documentation = xyes])
52 if test "x$enable_documentation" = "xyes"; then
53 AC_CONFIG_FILES(doc/Makefile doc/common.tex)
54 fi
55+AM_CONDITIONAL([CONFIG_TESTS], [test x$enable_tests = xyes])
56+if test "x$enable_tests" = "xyes"; then
57+ AC_CONFIG_FILES(tests/Makefile tests/check-namespace.sh)
58+fi
59+
60
61-AC_CONFIG_FILES(Makefile src/Makefile tests/Makefile tests/check-namespace.sh
62- include/libunwind-common.h
63+AC_CONFIG_FILES(Makefile src/Makefile include/libunwind-common.h
64 include/libunwind.h include/tdep/libunwind_i.h)
65 AC_CONFIG_FILES(src/unwind/libunwind.pc src/coredump/libunwind-coredump.pc
66 src/ptrace/libunwind-ptrace.pc src/setjmp/libunwind-setjmp.pc
67--
681.8.3.1
69