summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/nettle/nettle-3.6/Add-target-to-only-build-tests-not-run-them.patch
diff options
context:
space:
mode:
authorWang Mingyu <wangmy@cn.fujitsu.com>2021-01-07 17:04:21 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-01-10 12:34:40 +0000
commitced238d8428da973473e805fd3d665dc626d9382 (patch)
tree166f12001dc499ea045a14baeb5ded2c9e4804c7 /meta/recipes-support/nettle/nettle-3.6/Add-target-to-only-build-tests-not-run-them.patch
parenta018d62503b94f18b9a889b134ad46e6fecd116e (diff)
downloadpoky-ced238d8428da973473e805fd3d665dc626d9382.tar.gz
nettle: upgrade 3.6 ->3.7
(From OE-Core rev: 83e2617fd693d3c8eb96622980cb229e64b01711) Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/nettle/nettle-3.6/Add-target-to-only-build-tests-not-run-them.patch')
-rw-r--r--meta/recipes-support/nettle/nettle-3.6/Add-target-to-only-build-tests-not-run-them.patch45
1 files changed, 0 insertions, 45 deletions
diff --git a/meta/recipes-support/nettle/nettle-3.6/Add-target-to-only-build-tests-not-run-them.patch b/meta/recipes-support/nettle/nettle-3.6/Add-target-to-only-build-tests-not-run-them.patch
deleted file mode 100644
index e3f5c6de7d..0000000000
--- a/meta/recipes-support/nettle/nettle-3.6/Add-target-to-only-build-tests-not-run-them.patch
+++ /dev/null
@@ -1,45 +0,0 @@
1Add target to only build tests (not run them)
2
3Not sending upstream as this is only a start of a solution to
4installable tests: It's useful for us already as is.
5
6Upstream-Status: Inappropriate [not a complete solution]
7
8Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
9Refactored for 3.4
10Signed-off-by: Armin Kuster <akuster@mvista.com>
11---
12 Makefile.in | 3 +++
13 testsuite/Makefile.in | 2 ++
14 2 files changed, 5 insertions(+)
15
16diff --git a/Makefile.in b/Makefile.in
17index e5ccfc7..15c9275 100644
18--- a/Makefile.in
19+++ b/Makefile.in
20@@ -52,6 +52,9 @@ clean distclean mostlyclean maintainer-clean tags:
21 echo "Making $@ in $$d" ; (cd $$d && $(MAKE) $@); done
22 $(MAKE) $@-here
23
24+buildtest:
25+ echo "Making $@ in testsuite" ; (cd testsuite && $(MAKE) $@)
26+
27 check-here:
28 true
29
30diff --git a/testsuite/Makefile.in b/testsuite/Makefile.in
31index 3f5e5f6..8fd68a3 100644
32--- a/testsuite/Makefile.in
33+++ b/testsuite/Makefile.in
34@@ -122,6 +122,8 @@ $(TARGETS) $(EXTRA_TARGETS): testutils.$(OBJEXT) ../nettle-internal.$(OBJEXT) \
35 # data.
36 VALGRIND = valgrind --error-exitcode=1 --leak-check=full --show-reachable=yes @IF_ASM@ --partial-loads-ok=yes
37
38+buildtest: $(TS_ALL)
39+
40 check: $(TS_ALL)
41 TEST_SHLIB_DIR="$(TEST_SHLIB_DIR)" \
42 srcdir="$(srcdir)" \
43--
442.17.1
45