summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/ltp/ltp/0001-testcases-fix-an-absent-format-string-issue.patch
diff options
context:
space:
mode:
authorPetr Vorel <petr.vorel@gmail.com>2020-02-29 17:51:45 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-03-02 16:16:27 +0000
commita37dba3063256ef4852522a1b1035a10bcd9860d (patch)
tree77eb57ce9e5b27825b040c791774f542531545ba /meta/recipes-extended/ltp/ltp/0001-testcases-fix-an-absent-format-string-issue.patch
parentfecd65625ec6fb9a7879cfa18eab95d2b1dda2ff (diff)
downloadpoky-a37dba3063256ef4852522a1b1035a10bcd9860d.tar.gz
ltp: Update to 20200120
Removed ffsb copying file and associated runtest file fs_ext4 (both removed in this release). Added LIBS=-lfts for MUSL. Removed patches (accepted upstream) * 0001-mkswap01.sh-Add-udevadm-trigger-before-swap-verifica.patch * 0001-testcases-fix-an-absent-format-string-issue.patch * 0001-nm01-Remove-prefix-zeros-of-the-addresses-output-by-.patch Merged patches * 0006-rt_tgsigqueueinfo-disable-test-on-musl.patch (into 0001-build-Add-option-to-select-libc-implementation.patch as they touch the same files) Refreshed patches (some tests have been fixed for musl) * 0001-Add-more-musl-exclusions.patch * 0001-build-Add-option-to-select-libc-implementation.patch * 0002-kernel-controllers-Link-with-libfts-explicitly-on-mu.patch IMHO this one shouldn't be needed not, but CI still fails without it Updated status * 0008-testcases-network-nfsv4-acl-acl1.c-Security-fix-on-s.patch * 0001-syscalls-Check-for-time64-unsafe-syscalls-before-usi.patch (From OE-Core rev: 62e2063698477a13c55ae370451e52a2f1e18e45) Signed-off-by: Petr Vorel <petr.vorel@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/ltp/ltp/0001-testcases-fix-an-absent-format-string-issue.patch')
-rw-r--r--meta/recipes-extended/ltp/ltp/0001-testcases-fix-an-absent-format-string-issue.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/meta/recipes-extended/ltp/ltp/0001-testcases-fix-an-absent-format-string-issue.patch b/meta/recipes-extended/ltp/ltp/0001-testcases-fix-an-absent-format-string-issue.patch
deleted file mode 100644
index 9330844509..0000000000
--- a/meta/recipes-extended/ltp/ltp/0001-testcases-fix-an-absent-format-string-issue.patch
+++ /dev/null
@@ -1,24 +0,0 @@
1From 476ce907fa18042cdde0a244ba9a46cd895ce76c Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Thu, 12 Dec 2019 17:56:02 +0100
4Subject: [PATCH] testcases: fix an absent format string issue
5
6Upstream-Status: Pending
7Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
8---
9 .../kernel/syscalls/pidfd_send_signal/pidfd_send_signal03.c | 2 +-
10 1 file changed, 1 insertion(+), 1 deletion(-)
11
12diff --git a/testcases/kernel/syscalls/pidfd_send_signal/pidfd_send_signal03.c b/testcases/kernel/syscalls/pidfd_send_signal/pidfd_send_signal03.c
13index 27dbc6626..19d943d06 100644
14--- a/testcases/kernel/syscalls/pidfd_send_signal/pidfd_send_signal03.c
15+++ b/testcases/kernel/syscalls/pidfd_send_signal/pidfd_send_signal03.c
16@@ -59,7 +59,7 @@ static void verify_pidfd_send_signal(void)
17
18 /* Manipulate PID for next process */
19 sprintf(pid_str, "%d", pid - 1);
20- SAFE_FILE_PRINTF(last_pid_file, pid_str);
21+ SAFE_FILE_PRINTF(last_pid_file, "%s", pid_str);
22
23 new_pid = SAFE_FORK();
24 if (new_pid == 0) {