package/ltp-testsuite: bump version to 20210927
* Update unsupported testcases for musl (process.c has been removed in this release) * refresh 0001-lapi-Add-sysinfo.h-to-fix-build-with-MUSL-libc.patch (unfortunately still needed, it'd be great to update all toolchains) * Backport fix after this release: - 3 patches for build fix on sourcery-arm - functional fix from e42149e28 ("lib: fix MemAvailable parsing") Signed-off-by: Petr Vorel <petr.vorel@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
c83bf97206
commit
058e743d81
@ -1,4 +1,4 @@
|
|||||||
From ac3e262cba81889c0bb04ce87a50a1709f2726e7 Mon Sep 17 00:00:00 2001
|
From bee452dfa2a34ba7df7db677e5673cbdcd23f61e Mon Sep 17 00:00:00 2001
|
||||||
From: Petr Vorel <petr.vorel@gmail.com>
|
From: Petr Vorel <petr.vorel@gmail.com>
|
||||||
Date: Thu, 1 Oct 2020 23:28:39 +0200
|
Date: Thu, 1 Oct 2020 23:28:39 +0200
|
||||||
Subject: [PATCH] lapi: Add sysinfo.h to fix build with MUSL libc
|
Subject: [PATCH] lapi: Add sysinfo.h to fix build with MUSL libc
|
||||||
@ -27,7 +27,9 @@ x86_64-buildroot-linux-musl/sysroot/usr/include/sys/sysinfo.h:10:8: note: origin
|
|||||||
|
|
||||||
Signed-off-by: Petr Vorel <petr.vorel@gmail.com>
|
Signed-off-by: Petr Vorel <petr.vorel@gmail.com>
|
||||||
|
|
||||||
[ upstream status: https://patchwork.ozlabs.org/project/ltp/patch/20201001231256.6930-1-petr.vorel@gmail.com/
|
[ upstream status:
|
||||||
|
https://patchwork.ozlabs.org/project/ltp/patch/20201001231256.6930-1-petr.vorel@gmail.com/,
|
||||||
|
rebased for 20210927 ]
|
||||||
|
|
||||||
But this patch is not going to get upstreamed because it got fixed in Linux kernel:
|
But this patch is not going to get upstreamed because it got fixed in Linux kernel:
|
||||||
a85cbe6159ff "uapi: move constants from <linux/kernel.h> to <linux/const.h>"
|
a85cbe6159ff "uapi: move constants from <linux/kernel.h> to <linux/const.h>"
|
||||||
@ -36,6 +38,8 @@ This patch was also backported to stable and LTS versions,
|
|||||||
which we use since buildroot 54584d233b "{linux, linux-headers}: bump
|
which we use since buildroot 54584d233b "{linux, linux-headers}: bump
|
||||||
5.{4, 10}.x 4.{4, 9, 14, 19} series".
|
5.{4, 10}.x 4.{4, 9, 14, 19} series".
|
||||||
We just wait for all musl based toolchains to be rebuilt. ]
|
We just wait for all musl based toolchains to be rebuilt. ]
|
||||||
|
|
||||||
|
Signed-off-by: Petr Vorel <petr.vorel@gmail.com>
|
||||||
---
|
---
|
||||||
include/lapi/sysinfo.h | 22 +++++++++++++++++++
|
include/lapi/sysinfo.h | 22 +++++++++++++++++++
|
||||||
include/tst_safe_macros.h | 2 +-
|
include/tst_safe_macros.h | 2 +-
|
||||||
@ -46,7 +50,8 @@ We just wait for all musl based toolchains to be rebuilt. ]
|
|||||||
testcases/kernel/syscalls/sysinfo/sysinfo01.c | 2 +-
|
testcases/kernel/syscalls/sysinfo/sysinfo01.c | 2 +-
|
||||||
testcases/kernel/syscalls/sysinfo/sysinfo02.c | 2 +-
|
testcases/kernel/syscalls/sysinfo/sysinfo02.c | 2 +-
|
||||||
testcases/kernel/syscalls/sysinfo/sysinfo03.c | 2 +-
|
testcases/kernel/syscalls/sysinfo/sysinfo03.c | 2 +-
|
||||||
9 files changed, 30 insertions(+), 8 deletions(-)
|
.../interfaces/pthread_cond_broadcast/1-2.c | 2 +-
|
||||||
|
10 files changed, 31 insertions(+), 9 deletions(-)
|
||||||
create mode 100644 include/lapi/sysinfo.h
|
create mode 100644 include/lapi/sysinfo.h
|
||||||
|
|
||||||
diff --git a/include/lapi/sysinfo.h b/include/lapi/sysinfo.h
|
diff --git a/include/lapi/sysinfo.h b/include/lapi/sysinfo.h
|
||||||
@ -78,7 +83,7 @@ index 000000000..d0e0e93d7
|
|||||||
+
|
+
|
||||||
+#endif /* SYSINFO_H__ */
|
+#endif /* SYSINFO_H__ */
|
||||||
diff --git a/include/tst_safe_macros.h b/include/tst_safe_macros.h
|
diff --git a/include/tst_safe_macros.h b/include/tst_safe_macros.h
|
||||||
index ee3df4142..3cb1623f9 100644
|
index d99441c86..0d26e9d45 100644
|
||||||
--- a/include/tst_safe_macros.h
|
--- a/include/tst_safe_macros.h
|
||||||
+++ b/include/tst_safe_macros.h
|
+++ b/include/tst_safe_macros.h
|
||||||
@@ -12,7 +12,7 @@
|
@@ -12,7 +12,7 @@
|
||||||
@ -111,7 +116,7 @@ index a5b6bc504..20d01d304 100644
|
|||||||
char *safe_basename(const char *file, const int lineno,
|
char *safe_basename(const char *file, const int lineno,
|
||||||
void (*cleanup_fn) (void), char *path)
|
void (*cleanup_fn) (void), char *path)
|
||||||
diff --git a/lib/tst_memutils.c b/lib/tst_memutils.c
|
diff --git a/lib/tst_memutils.c b/lib/tst_memutils.c
|
||||||
index dd09db490..085392365 100644
|
index 69077861f..ae1cad29b 100644
|
||||||
--- a/lib/tst_memutils.c
|
--- a/lib/tst_memutils.c
|
||||||
+++ b/lib/tst_memutils.c
|
+++ b/lib/tst_memutils.c
|
||||||
@@ -5,11 +5,11 @@
|
@@ -5,11 +5,11 @@
|
||||||
@ -148,64 +153,70 @@ index 9676ea4b5..33b2ac822 100644
|
|||||||
|
|
||||||
#define FIVE_HUNDRED_MB (500ULL*1024*1024)
|
#define FIVE_HUNDRED_MB (500ULL*1024*1024)
|
||||||
diff --git a/testcases/kernel/syscalls/madvise/madvise06.c b/testcases/kernel/syscalls/madvise/madvise06.c
|
diff --git a/testcases/kernel/syscalls/madvise/madvise06.c b/testcases/kernel/syscalls/madvise/madvise06.c
|
||||||
index 962554163..aa4d3bc91 100644
|
index 263b8e78b..4fa52e6ea 100644
|
||||||
--- a/testcases/kernel/syscalls/madvise/madvise06.c
|
--- a/testcases/kernel/syscalls/madvise/madvise06.c
|
||||||
+++ b/testcases/kernel/syscalls/madvise/madvise06.c
|
+++ b/testcases/kernel/syscalls/madvise/madvise06.c
|
||||||
@@ -41,7 +41,7 @@
|
@@ -46,7 +46,7 @@
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <sys/mount.h>
|
#include <sys/mount.h>
|
||||||
-#include <sys/sysinfo.h>
|
-#include <sys/sysinfo.h>
|
||||||
+#include "lapi/sysinfo.h"
|
+#include "lapi/sysinfo.h"
|
||||||
#include "tst_test.h"
|
#include "tst_test.h"
|
||||||
|
#include "tst_cgroup.h"
|
||||||
|
|
||||||
#define CHUNK_SZ (400*1024*1024L)
|
|
||||||
diff --git a/testcases/kernel/syscalls/sysinfo/sysinfo01.c b/testcases/kernel/syscalls/sysinfo/sysinfo01.c
|
diff --git a/testcases/kernel/syscalls/sysinfo/sysinfo01.c b/testcases/kernel/syscalls/sysinfo/sysinfo01.c
|
||||||
index 2ea44a2be..a95066bf5 100644
|
index 2ea44a2be..a237345ef 100644
|
||||||
--- a/testcases/kernel/syscalls/sysinfo/sysinfo01.c
|
--- a/testcases/kernel/syscalls/sysinfo/sysinfo01.c
|
||||||
+++ b/testcases/kernel/syscalls/sysinfo/sysinfo01.c
|
+++ b/testcases/kernel/syscalls/sysinfo/sysinfo01.c
|
||||||
@@ -69,9 +69,9 @@
|
@@ -69,7 +69,7 @@
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <sys/signal.h>
|
#include <sys/signal.h>
|
||||||
-#include <sys/sysinfo.h>
|
-#include <sys/sysinfo.h>
|
||||||
|
|
||||||
#include "test.h"
|
|
||||||
+#include "lapi/sysinfo.h"
|
+#include "lapi/sysinfo.h"
|
||||||
|
|
||||||
void setup();
|
#include "test.h"
|
||||||
void cleanup();
|
|
||||||
diff --git a/testcases/kernel/syscalls/sysinfo/sysinfo02.c b/testcases/kernel/syscalls/sysinfo/sysinfo02.c
|
diff --git a/testcases/kernel/syscalls/sysinfo/sysinfo02.c b/testcases/kernel/syscalls/sysinfo/sysinfo02.c
|
||||||
index 678b8f1d3..5ce65d20e 100644
|
index 7ad0e8bdc..61fa1ab75 100644
|
||||||
--- a/testcases/kernel/syscalls/sysinfo/sysinfo02.c
|
--- a/testcases/kernel/syscalls/sysinfo/sysinfo02.c
|
||||||
+++ b/testcases/kernel/syscalls/sysinfo/sysinfo02.c
|
+++ b/testcases/kernel/syscalls/sysinfo/sysinfo02.c
|
||||||
@@ -65,10 +65,10 @@
|
@@ -65,7 +65,7 @@
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
#include <sys/signal.h>
|
#include <sys/signal.h>
|
||||||
-#include <sys/sysinfo.h>
|
-#include <sys/sysinfo.h>
|
||||||
|
+#include "lapi/sysinfo.h"
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
#include "test.h"
|
#include "test.h"
|
||||||
+#include "lapi/sysinfo.h"
|
|
||||||
|
|
||||||
#define INVALID_ADDRESS ((uintptr_t)-1)
|
|
||||||
|
|
||||||
diff --git a/testcases/kernel/syscalls/sysinfo/sysinfo03.c b/testcases/kernel/syscalls/sysinfo/sysinfo03.c
|
diff --git a/testcases/kernel/syscalls/sysinfo/sysinfo03.c b/testcases/kernel/syscalls/sysinfo/sysinfo03.c
|
||||||
index af7cb6421..3b61a05b1 100644
|
index af7cb6421..dc5ae65e3 100644
|
||||||
--- a/testcases/kernel/syscalls/sysinfo/sysinfo03.c
|
--- a/testcases/kernel/syscalls/sysinfo/sysinfo03.c
|
||||||
+++ b/testcases/kernel/syscalls/sysinfo/sysinfo03.c
|
+++ b/testcases/kernel/syscalls/sysinfo/sysinfo03.c
|
||||||
@@ -13,9 +13,9 @@
|
@@ -13,7 +13,7 @@
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
-#include <sys/sysinfo.h>
|
-#include <sys/sysinfo.h>
|
||||||
|
+#include "lapi/sysinfo.h"
|
||||||
#include "lapi/namespaces_constants.h"
|
#include "lapi/namespaces_constants.h"
|
||||||
#include "lapi/posix_clocks.h"
|
#include "lapi/posix_clocks.h"
|
||||||
+#include "lapi/sysinfo.h"
|
|
||||||
#include "tst_test.h"
|
#include "tst_test.h"
|
||||||
|
diff --git a/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_broadcast/1-2.c b/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_broadcast/1-2.c
|
||||||
|
index 22e7c3638..572701f9f 100644
|
||||||
|
--- a/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_broadcast/1-2.c
|
||||||
|
+++ b/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_broadcast/1-2.c
|
||||||
|
@@ -43,7 +43,7 @@
|
||||||
|
#include <sys/wait.h>
|
||||||
|
#include <semaphore.h>
|
||||||
|
#ifdef __linux__
|
||||||
|
-#include <sys/sysinfo.h>
|
||||||
|
+#include "lapi/sysinfo.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
static int offsets[] = {
|
#include "../testfrmw/testfrmw.h"
|
||||||
--
|
--
|
||||||
2.30.0
|
2.33.0
|
||||||
|
|
||||||
|
@ -0,0 +1,36 @@
|
|||||||
|
From 29a096fe2bd356f419bd8a8404d5b652c996b92f Mon Sep 17 00:00:00 2001
|
||||||
|
From: Ralph Siemsen <ralph.siemsen@linaro.org>
|
||||||
|
Date: Mon, 27 Sep 2021 22:18:50 -0400
|
||||||
|
Subject: [PATCH] lib: fix MemAvailable parsing
|
||||||
|
|
||||||
|
The amount of available memory was not being returned correctly, which
|
||||||
|
resulted in tests being executed when they should have been skipped.
|
||||||
|
|
||||||
|
Fixes: 8759f4 ("lib: adjust the tmpfs size according to .dev_min_size and MemAvailable")
|
||||||
|
Signed-off-by: Ralph Siemsen <ralph.siemsen@linaro.org>
|
||||||
|
Signed-off-by: Li Wang <liwang@redhat.com>
|
||||||
|
Signed-off-by: Petr Vorel <petr.vorel@gmail.com>
|
||||||
|
[ upstream status: e42149e28 ("lib: fix MemAvailable parsing") ]
|
||||||
|
---
|
||||||
|
lib/tst_memutils.c | 4 ++--
|
||||||
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/lib/tst_memutils.c b/lib/tst_memutils.c
|
||||||
|
index ae1cad29b..a46de78f5 100644
|
||||||
|
--- a/lib/tst_memutils.c
|
||||||
|
+++ b/lib/tst_memutils.c
|
||||||
|
@@ -65,9 +65,9 @@ void tst_pollute_memory(size_t maxsize, int fillchar)
|
||||||
|
|
||||||
|
long long tst_available_mem(void)
|
||||||
|
{
|
||||||
|
- long long mem_available;
|
||||||
|
+ unsigned long long mem_available = 0;
|
||||||
|
|
||||||
|
- if (FILE_LINES_SCANF("/proc/meminfo", "MemAvailable: %ld",
|
||||||
|
+ if (FILE_LINES_SCANF("/proc/meminfo", "MemAvailable: %llu",
|
||||||
|
&mem_available)) {
|
||||||
|
mem_available = SAFE_READ_MEMINFO("MemFree:")
|
||||||
|
+ SAFE_READ_MEMINFO("Cached:");
|
||||||
|
--
|
||||||
|
2.33.0
|
||||||
|
|
@ -0,0 +1,37 @@
|
|||||||
|
From 881709d1e4d1bba5bf8ca365bc058f338bd72dc2 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Petr Vorel <petr.vorel@gmail.com>
|
||||||
|
Date: Wed, 29 Sep 2021 19:38:42 +0200
|
||||||
|
Subject: [PATCH] lapi/rtnetlink.h: Fix include guards
|
||||||
|
|
||||||
|
Fixes: 5fea0638a ("lapi: Add missing IFA_FLAGS")
|
||||||
|
|
||||||
|
Signed-off-by: Petr Vorel <petr.vorel@gmail.com>
|
||||||
|
[ upstream status: a2a212cf8 ("lapi/rtnetlink.h: Fix include guards") ]
|
||||||
|
---
|
||||||
|
include/lapi/rtnetlink.h | 6 +++---
|
||||||
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/include/lapi/rtnetlink.h b/include/lapi/rtnetlink.h
|
||||||
|
index 8a1b5385b..04e9ad51a 100644
|
||||||
|
--- a/include/lapi/rtnetlink.h
|
||||||
|
+++ b/include/lapi/rtnetlink.h
|
||||||
|
@@ -1,8 +1,8 @@
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
/* Copyright (c) 2021 Petr Vorel <petr.vorel@gmail.com> */
|
||||||
|
|
||||||
|
-#ifndef LAPI_IF_ADDR_H__
|
||||||
|
-# define LAPI_IF_ADDR_H__
|
||||||
|
+#ifndef LAPI_RTNETLINK_H__
|
||||||
|
+# define LAPI_RTNETLINK_H__
|
||||||
|
|
||||||
|
#include <linux/rtnetlink.h>
|
||||||
|
|
||||||
|
@@ -10,4 +10,4 @@
|
||||||
|
# define IFA_FLAGS 8
|
||||||
|
#endif
|
||||||
|
|
||||||
|
-#endif /* LAPI_IF_ADDR_H__ */
|
||||||
|
+#endif /* LAPI_RTNETLINK_H__ */
|
||||||
|
--
|
||||||
|
2.33.0
|
||||||
|
|
@ -0,0 +1,58 @@
|
|||||||
|
From b13440627bd4a9f060a33d400a47a40daa2bc12e Mon Sep 17 00:00:00 2001
|
||||||
|
From: Petr Vorel <petr.vorel@gmail.com>
|
||||||
|
Date: Wed, 29 Sep 2021 19:37:19 +0200
|
||||||
|
Subject: [PATCH] lapi: Create if_addr.h and reuse it in rtnetlink.h
|
||||||
|
|
||||||
|
There will be fix in next commit for missing IFA_F_NOPREFIXROUTE which
|
||||||
|
requires creating lapi/if_addr.h. Thus move IFA_FLAGS to lapi/if_addr.h,
|
||||||
|
as it belongs there and reuse lapi/if_addr.h in lapi/rtnetlink.h just
|
||||||
|
like <linux/rtnetlink.h> includes <linux/if_addr.h>.
|
||||||
|
|
||||||
|
Signed-off-by: Petr Vorel <petr.vorel@gmail.com>
|
||||||
|
[ upstream status: https://lore.kernel.org/ltp/20210930183058.5240-3-petr.vorel@gmail.com/T/#u ]
|
||||||
|
---
|
||||||
|
include/lapi/if_addr.h | 16 ++++++++++++++++
|
||||||
|
include/lapi/rtnetlink.h | 5 +----
|
||||||
|
2 files changed, 17 insertions(+), 4 deletions(-)
|
||||||
|
create mode 100644 include/lapi/if_addr.h
|
||||||
|
|
||||||
|
diff --git a/include/lapi/if_addr.h b/include/lapi/if_addr.h
|
||||||
|
new file mode 100644
|
||||||
|
index 000000000..4e50a0a4e
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/include/lapi/if_addr.h
|
||||||
|
@@ -0,0 +1,16 @@
|
||||||
|
+// SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
+/*
|
||||||
|
+ * Copyright (c) 2021 Petr Vorel <petr.vorel@gmail.com>
|
||||||
|
+ */
|
||||||
|
+
|
||||||
|
+#ifndef LAPI_IF_ADDR_H__
|
||||||
|
+#define LAPI_IF_ADDR_H__
|
||||||
|
+
|
||||||
|
+#include <linux/if_addr.h>
|
||||||
|
+
|
||||||
|
+#ifndef IFA_FLAGS
|
||||||
|
+# define IFA_FLAGS 8
|
||||||
|
+#endif
|
||||||
|
+
|
||||||
|
+
|
||||||
|
+#endif /* LAPI_IF_ADDR_H__ */
|
||||||
|
diff --git a/include/lapi/rtnetlink.h b/include/lapi/rtnetlink.h
|
||||||
|
index 04e9ad51a..089bf1a0d 100644
|
||||||
|
--- a/include/lapi/rtnetlink.h
|
||||||
|
+++ b/include/lapi/rtnetlink.h
|
||||||
|
@@ -5,9 +5,6 @@
|
||||||
|
# define LAPI_RTNETLINK_H__
|
||||||
|
|
||||||
|
#include <linux/rtnetlink.h>
|
||||||
|
-
|
||||||
|
-#ifndef IFA_FLAGS
|
||||||
|
-# define IFA_FLAGS 8
|
||||||
|
-#endif
|
||||||
|
+#include "lapi/if_addr.h"
|
||||||
|
|
||||||
|
#endif /* LAPI_RTNETLINK_H__ */
|
||||||
|
--
|
||||||
|
2.33.0
|
||||||
|
|
@ -0,0 +1,60 @@
|
|||||||
|
From 9e357fb4fc00ab9c303e314b85b9ae3836141f81 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Petr Vorel <petr.vorel@gmail.com>
|
||||||
|
Date: Wed, 29 Sep 2021 19:56:29 +0200
|
||||||
|
Subject: [PATCH] lapi/if_addr.h: Define IFA_FLAGS
|
||||||
|
|
||||||
|
and use it in icmp_rate_limit01.c.
|
||||||
|
|
||||||
|
This fixes error on toolchains with very old kernel headers, e.g.
|
||||||
|
Buildroot sourcery-arm:
|
||||||
|
|
||||||
|
icmp_rate_limit01.c:82:3: error: 'IFA_F_NOPREFIXROUTE' undeclared (first use in this function)
|
||||||
|
IFA_F_NOPREFIXROUTE);
|
||||||
|
|
||||||
|
Fixed because IFA_F_NOPREFIXROUTE was added in 3.14 and the oldest
|
||||||
|
system we still support is Cent0S 7 with 3.10 kernel.
|
||||||
|
|
||||||
|
NOTE: Cent0S 7 is obviously heavily patched thus it contains
|
||||||
|
IFA_F_NOPREFIXROUTE and therefore CI build didn't catch this error.
|
||||||
|
|
||||||
|
Signed-off-by: Petr Vorel <petr.vorel@gmail.com>
|
||||||
|
[ upstream status: https://lore.kernel.org/ltp/20210930183058.5240-4-petr.vorel@gmail.com/T/#u ]
|
||||||
|
---
|
||||||
|
include/lapi/if_addr.h | 3 +++
|
||||||
|
testcases/cve/icmp_rate_limit01.c | 3 ++-
|
||||||
|
2 files changed, 5 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/include/lapi/if_addr.h b/include/lapi/if_addr.h
|
||||||
|
index 4e50a0a4e..0f7e44784 100644
|
||||||
|
--- a/include/lapi/if_addr.h
|
||||||
|
+++ b/include/lapi/if_addr.h
|
||||||
|
@@ -12,5 +12,8 @@
|
||||||
|
# define IFA_FLAGS 8
|
||||||
|
#endif
|
||||||
|
|
||||||
|
+#ifndef IFA_F_NOPREFIXROUTE
|
||||||
|
+# define IFA_F_NOPREFIXROUTE 0x200
|
||||||
|
+#endif
|
||||||
|
|
||||||
|
#endif /* LAPI_IF_ADDR_H__ */
|
||||||
|
diff --git a/testcases/cve/icmp_rate_limit01.c b/testcases/cve/icmp_rate_limit01.c
|
||||||
|
index b3a237b30..3ada32675 100644
|
||||||
|
--- a/testcases/cve/icmp_rate_limit01.c
|
||||||
|
+++ b/testcases/cve/icmp_rate_limit01.c
|
||||||
|
@@ -27,11 +27,12 @@
|
||||||
|
#include <sys/socket.h>
|
||||||
|
#include <netinet/in.h>
|
||||||
|
#include <arpa/inet.h>
|
||||||
|
-#include <linux/if_addr.h>
|
||||||
|
#include <linux/errqueue.h>
|
||||||
|
|
||||||
|
#include <sched.h>
|
||||||
|
#include <limits.h>
|
||||||
|
+
|
||||||
|
+#include "lapi/if_addr.h"
|
||||||
|
#include "tst_test.h"
|
||||||
|
#include "tst_netdevice.h"
|
||||||
|
|
||||||
|
--
|
||||||
|
2.33.0
|
||||||
|
|
@ -1,5 +1,5 @@
|
|||||||
# From: https://github.com/linux-test-project/ltp/releases/download/20210524/ltp-full-20210524.tar.xz.sha1
|
# From: https://github.com/linux-test-project/ltp/releases/download/20210927/ltp-full-20210927.tar.xz.sha1
|
||||||
sha1 08d84f8ac3ba0c800f3070768c651703869105d7 ltp-full-20210524.tar.xz
|
sha1 dad7737f609e358c4060cb446b9cae5c026fc137 ltp-full-20210927.tar.xz
|
||||||
# Locally computed
|
# Locally computed
|
||||||
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 COPYING
|
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 COPYING
|
||||||
sha256 831678c64b85a8c24957c71632752537b2266890f2d2f352da9ed0ec45458189 ltp-full-20210524.tar.xz
|
sha256 779e9e5cc9af4f2b3d4cb32f5439ebd635504d2c4591bf900f0942dac290ed15 ltp-full-20210927.tar.xz
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
#
|
#
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
LTP_TESTSUITE_VERSION = 20210524
|
LTP_TESTSUITE_VERSION = 20210927
|
||||||
LTP_TESTSUITE_SOURCE = ltp-full-$(LTP_TESTSUITE_VERSION).tar.xz
|
LTP_TESTSUITE_SOURCE = ltp-full-$(LTP_TESTSUITE_VERSION).tar.xz
|
||||||
LTP_TESTSUITE_SITE = https://github.com/linux-test-project/ltp/releases/download/$(LTP_TESTSUITE_VERSION)
|
LTP_TESTSUITE_SITE = https://github.com/linux-test-project/ltp/releases/download/$(LTP_TESTSUITE_VERSION)
|
||||||
|
|
||||||
@ -70,7 +70,6 @@ LTP_TESTSUITE_UNSUPPORTED_TEST_CASES_$(BR2_TOOLCHAIN_USES_UCLIBC) += \
|
|||||||
testcases/misc/math/float/float_bessel.c
|
testcases/misc/math/float/float_bessel.c
|
||||||
|
|
||||||
LTP_TESTSUITE_UNSUPPORTED_TEST_CASES_$(BR2_TOOLCHAIN_USES_MUSL) += \
|
LTP_TESTSUITE_UNSUPPORTED_TEST_CASES_$(BR2_TOOLCHAIN_USES_MUSL) += \
|
||||||
testcases/kernel/sched/process_stress/process.c \
|
|
||||||
testcases/kernel/syscalls/confstr/confstr01.c \
|
testcases/kernel/syscalls/confstr/confstr01.c \
|
||||||
testcases/kernel/syscalls/fmtmsg/fmtmsg01.c \
|
testcases/kernel/syscalls/fmtmsg/fmtmsg01.c \
|
||||||
testcases/kernel/syscalls/getcontext/getcontext01.c \
|
testcases/kernel/syscalls/getcontext/getcontext01.c \
|
||||||
|
Loading…
Reference in New Issue
Block a user