diff --git a/curl.changes b/curl.changes index d674875..c0f3651 100644 --- a/curl.changes +++ b/curl.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Mar 9 12:54:08 UTC 2020 - Andreas Schwab + +- ignore_runtests_failure.patch: remove, no longer needed + ------------------------------------------------------------------- Wed Mar 4 08:56:45 UTC 2020 - Pedro Monreal Gonzalez diff --git a/curl.spec b/curl.spec index 2cedbdd..9ebf5c9 100644 --- a/curl.spec +++ b/curl.spec @@ -33,7 +33,6 @@ Source4: https://daniel.haxx.se/mykey.asc#/curl.keyring Patch0: libcurl-ocloexec.patch Patch1: dont-mess-with-rpmoptflags.diff Patch2: curl-secure-getenv.patch -Patch3: ignore_runtests_failure.patch # PATCH-FIX-OPENSUSE bsc#1076446 protocol redirection not supported or disabled Patch4: curl-disabled-redirect-protocol-message.patch Patch5: curl-use_OPENSSL_config.patch @@ -94,9 +93,6 @@ user interaction or any kind of interactivity. %patch0 -p1 %patch1 %patch2 -%ifarch ppc ppc64 ppc64le -%patch3 -p1 -%endif %patch4 -p1 %patch5 -p1 diff --git a/ignore_runtests_failure.patch b/ignore_runtests_failure.patch deleted file mode 100644 index 248474b..0000000 --- a/ignore_runtests_failure.patch +++ /dev/null @@ -1,42 +0,0 @@ -From: Michel Normand -Subject: ignore runtests failure -Date: Thu, 25 Jan 2018 12:29:03 +0100 - -ignore runtests failures -because tests are failing randomly on ppc64le and -still failing even if tried in loop and adding lines in spec -=== -%ifarch ppc ppc64 ppc64le -echo "# disable few tests for PowerPC bypass boo#1075219" >>data/DISABLED -echo "575" >>data/DISABLED -echo "576" >>data/DISABLED -echo "591" >>data/DISABLED -echo "592" >>data/DISABLED -echo "714" >>data/DISABLED -echo "1206" >>data/DISABLED -echo "1207" >>data/DISABLED -echo "1238" >>data/DISABLED -echo "1319" >>data/DISABLED -echo "1388" >>data/DISABLED -echo "1501" >>data/DISABLED -echo "1514" >>data/DISABLED -echo "1525" >>data/DISABLED -%endif -=== - -Signed-off-by: Michel Normand ---- - tests/runtests.pl | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -Index: curl-7.57.0/tests/runtests.pl -=================================================================== ---- curl-7.57.0.orig/tests/runtests.pl -+++ curl-7.57.0/tests/runtests.pl -@@ -5881,5 +5881,5 @@ if($skipped && !$short) { - } - - if($total && ($ok != $total)) { -- exit 1; -+ printf "WARNING: ignore any test failures as per applied patch\n"; - }