memtester: upgrade 4.3.0 -> 4.4.0

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Zang Ruochen 2020-09-17 21:24:13 +08:00 committed by Khem Raj
parent 3ff25ef770
commit a31ce8fe91
2 changed files with 2 additions and 60 deletions

View File

@ -1,57 +0,0 @@
From 01f1c05702eb534271777648c976ab6402a5145b Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Wed, 12 Aug 2020 23:18:30 -0700
Subject: [PATCH] Define mword16 and mword8 once
Defining them in .h meant they are defined in all .c files including
this .h file
Fixes build with gcc 10+
Upstream-Status: Pending
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
tests.c | 9 +++++++++
types.h | 9 ---------
2 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/tests.c b/tests.c
index be1b350..4305bed 100644
--- a/tests.c
+++ b/tests.c
@@ -27,6 +27,15 @@ char progress[] = "-\\|/";
#define PROGRESSOFTEN 2500
#define ONE 0x00000001L
+union {
+ unsigned char bytes[UL_LEN/8];
+ ul val;
+} mword8;
+
+union {
+ unsigned short u16s[UL_LEN/16];
+ ul val;
+} mword16;
/* Function definitions. */
int compare_regions(ulv *bufa, ulv *bufb, size_t count) {
diff --git a/types.h b/types.h
index ad7ce73..e14ea32 100644
--- a/types.h
+++ b/types.h
@@ -25,12 +25,3 @@ struct test {
int (*fp)();
};
-union {
- unsigned char bytes[UL_LEN/8];
- ul val;
-} mword8;
-
-union {
- unsigned short u16s[UL_LEN/16];
- ul val;
-} mword16;
--
2.28.0

View File

@ -7,10 +7,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3"
SRC_URI = "http://pyropus.ca/software/memtester/old-versions/${BP}.tar.gz \
file://Makefile.patch \
file://0001-Define-mword16-and-mword8-once.patch \
"
SRC_URI[md5sum] = "598f41b7308e1f736164bca3ab84ddbe"
SRC_URI[sha256sum] = "f9dfe2fd737c38fad6535bbab327da9a21f7ce4ea6f18c7b3339adef6bf5fd88"
SRC_URI[md5sum] = "e1883b69cd7c0bb74ef6a475c93a4fbf"
SRC_URI[sha256sum] = "6ffe23e6e6449b42c577c7953778fb6f698050196797a94fc619d9badc59f8e8"
do_compile () {
echo '${CC} ${CFLAGS} -DPOSIX -c' > conf-cc