Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package augeas for openSUSE:Factory checked 
in at 2021-07-02 13:26:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/augeas (Old)
 and      /work/SRC/openSUSE:Factory/.augeas.new.2625 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "augeas"

Fri Jul  2 13:26:23 2021 rev:53 rq:902721 version:1.12.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/augeas/augeas.changes    2021-06-01 
10:34:49.580543835 +0200
+++ /work/SRC/openSUSE:Factory/.augeas.new.2625/augeas.changes  2021-07-02 
13:26:30.641205827 +0200
@@ -1,0 +2,5 @@
+Tue Jun  8 15:00:58 UTC 2021 - Dirk M??ller <[email protected]>
+
+- add remove-unportable-tests.patch to fix build
+
+-------------------------------------------------------------------

New:
----
  remove-unportable-tests.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ augeas.spec ++++++
--- /var/tmp/diff_new_pack.AeVtWS/_old  2021-07-02 13:26:31.161201792 +0200
+++ /var/tmp/diff_new_pack.AeVtWS/_new  2021-07-02 13:26:31.165201761 +0200
@@ -31,6 +31,7 @@
 Patch1:         gcc9-disable-broken-test.patch
 Patch2:         augeas-new_options_for_chrony.patch
 Patch3:         augeas-allow_printable_ASCII.patch
+Patch4:         remove-unportable-tests.patch
 BuildRequires:  pkgconfig
 BuildRequires:  readline-devel
 BuildRequires:  pkgconfig(libxml-2.0)
@@ -97,6 +98,7 @@
 %patch1 -p1
 %patch2 -p1
 %patch3 -p1
+%patch4 -p1
 
 %build
 %configure \



++++++ remove-unportable-tests.patch ++++++
From: Paul Eggert <[email protected]>
Date: Thu, 27 Aug 2020 17:52:58 -0700
Subject: [PATCH] perror, strerror_r: remove unportable tests

Problem reported by Florian Weimer in:
https://lists.gnu.org/r/bug-gnulib/2020-08/msg00220.html
* tests/test-perror2.c (main):
* tests/test-strerror_r.c (main): Omit unportable tests.
---
 ChangeLog               | 8 ++++++++
 tests/test-perror2.c    | 3 ---
 tests/test-strerror_r.c | 3 ---
 3 files changed, 8 insertions(+), 6 deletions(-)

--- a/gnulib/tests/test-perror2.c
+++ b/gnulib/tests/test-perror2.c
@@ -79,9 +79,6 @@ main (void)
     errno = -5;
     perror ("");
     ASSERT (!ferror (stderr));
-    ASSERT (msg1 == msg2 || msg1 == msg4 || STREQ (msg1, str1));
-    ASSERT (msg2 == msg4 || STREQ (msg2, str2));
-    ASSERT (msg3 == msg4 || STREQ (msg3, str3));
     ASSERT (STREQ (msg4, str4));
 
     free (str1);
--- a/gnulib/tests/test-strerror_r.c
+++ b/gnulib/tests/test-strerror_r.c
@@ -165,9 +165,6 @@ main (void)
 
     strerror_r (EACCES, buf, sizeof buf);
     strerror_r (-5, buf, sizeof buf);
-    ASSERT (msg1 == msg2 || msg1 == msg4 || STREQ (msg1, str1));
-    ASSERT (msg2 == msg4 || STREQ (msg2, str2));
-    ASSERT (msg3 == msg4 || STREQ (msg3, str3));
     ASSERT (STREQ (msg4, str4));
 
     free (str1);
-- 
2.17.1

Reply via email to