socat/socat-ignore-tests-failure-boo1078346.patch
Marcus Meissner ac2ed23d50 Accepting request 1040684 from home:polslinux:branches:network:utilities
- Update to 1.7.4.4:
  * FIX: In error.c msg2() there was a stack overflow on long messages: The
    terminating \0 Byte was written behind the last position.
  * FIX: UDP-RECVFROM with fork sometimes terminated when multiple packets
    arrived.
  * FIX: a couple of weaknesses and errors when accessing invalid or
    incompatible file system entries with UNIX domain, file, and generic
    addresses.
  * FIX: bad parser error message on "socat /tmp/x\"x/x -"
- Drop socat-fix-asan-error.patch

OBS-URL: https://build.opensuse.org/request/show/1040684
OBS-URL: https://build.opensuse.org/package/show/network:utilities/socat?expand=0&rev=62
2022-12-14 10:09:58 +00:00

26 lines
742 B
Diff

From: Michel Normand <normand@linux.vnet.ibm.com>
Subject: socat ignore tests failure boo1078346
Date: Wed, 31 Jan 2018 10:19:54 +0100
socat ignore flaky tests failure boo1078346
for PowerPC and S390
Signed-off-by: Michel Normand <normand@linux.vnet.ibm.com>
---
test.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: socat-1.7.4.4/test.sh
===================================================================
--- socat-1.7.4.4.orig/test.sh
+++ socat-1.7.4.4/test.sh
@@ -15736,7 +15736,7 @@ if [ "$numCANT" -gt 0 ]; then
fi
if [ "$numFAIL" -gt 0 ]; then
echo "FAILED: $listFAIL"
- exit 1
+ uname -p | grep -qE 'ppc|s390' && { echo "ignore flaky failures, bypass boo#1078346"; exit 0; } || exit 1
fi
exit 0