mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 12:59:02 +02:00

Handle CVE-2025-32414 and CVE-2025-32415. * rebased install-tests.patch * removed testsuite testThreads (merged into runtest.c) *481fd6bbee
* removed IPv6 option (as part of with ftp support removal) *dba1ed85a3
* added testsuites testlimits testparser (already present before but not executed) License-Update: Mention contributors in Copyright4bd66d4549
(From OE-Core rev: 6585649fdd2ab9e83dfd60eb77ff7821a1363d50) Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
35 lines
1022 B
Diff
35 lines
1022 B
Diff
From 8c1054eacb430472068f21e4840749c384e8e866 Mon Sep 17 00:00:00 2001
|
|
From: Ross Burton <ross.burton@arm.com>
|
|
Date: Mon, 5 Dec 2022 17:02:32 +0000
|
|
Subject: [PATCH] add yocto-specific install-ptest target
|
|
|
|
Add a target to install the test suite.
|
|
|
|
Upstream-Status: Inappropriate
|
|
Signed-off-by: Ross Burton <ross.burton@arm.com>
|
|
---
|
|
Makefile.am | 10 ++++++++++
|
|
1 file changed, 10 insertions(+)
|
|
|
|
diff --git a/Makefile.am b/Makefile.am
|
|
index 4cb9a5c..8adcd7e 100644
|
|
--- a/Makefile.am
|
|
+++ b/Makefile.am
|
|
@@ -26,6 +26,16 @@ check_PROGRAMS = \
|
|
testparser \
|
|
testrecurse
|
|
|
|
+ptestdir=$(libexecdir)
|
|
+install-test-data: $(check_PROGRAMS)
|
|
+ install -d $(DESTDIR)$(ptestdir) $(DESTDIR)$(ptestdir)/python/
|
|
+ for T in $(check_PROGRAMS); do \
|
|
+ $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$T $(DESTDIR)$(ptestdir) ;\
|
|
+ done
|
|
+ cp -r $(srcdir)/test $(DESTDIR)$(ptestdir)
|
|
+ cp -r $(srcdir)/result $(DESTDIR)$(ptestdir)
|
|
+ cp -r $(srcdir)/python/tests $(DESTDIR)$(ptestdir)/python
|
|
+
|
|
bin_PROGRAMS = xmllint
|
|
|
|
bin_SCRIPTS = xml2-config
|