[glibc] branch glibc-2.25 updated (afe25c1 -> fc4d9f0)

2017-08-04 Thread Aurelien Jarno
This is an automated email from the git hooks/post-receive script.

aurel32 pushed a change to branch glibc-2.25
in repository glibc.

  from  afe25c1   unfuzzify patches/hurd-i386/tg-tls-threadvar.diff
   new  e17af1f   debian/patches/kfreebsd/local-sysdeps.diff, 
local-fbtl.diff: update to revision 6171 (from glibc-bsd).
   new  0dcd9e3   testsuite-xfail-debian.mk: update for kfreebsd-i386.
   new  6d76e90   debian/patches/any/local-bits-sigstack.diff: new patch to 
fix  on Hurd and kFreeBSD.
   new  fc4d9f0   submitted-tst-rfc3484.diff: Fix strtoull_l_internal 
define

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog   |  5 +++-
 debian/patches/any/local-bits-sigstack.diff| 16 +
 .../patches/hurd-i386/submitted-tst-rfc3484.diff   |  2 +-
 debian/patches/kfreebsd/local-sysdeps.diff | 17 ++---
 debian/patches/series  |  1 +
 debian/testsuite-xfail-debian.mk   | 28 ++
 6 files changed, 59 insertions(+), 10 deletions(-)
 create mode 100644 debian/patches/any/local-bits-sigstack.diff

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-glibc/glibc.git



[glibc] 04/04: submitted-tst-rfc3484.diff: Fix ____strtoull_l_internal define

2017-08-04 Thread Aurelien Jarno
This is an automated email from the git hooks/post-receive script.

aurel32 pushed a commit to branch glibc-2.25
in repository glibc.

commit fc4d9f02fd398372a1392c244d8f60cb777560c6
Author: Aurelien Jarno 
Date:   Sat Aug 5 05:58:54 2017 +0200

submitted-tst-rfc3484.diff: Fix strtoull_l_internal define
---
 debian/patches/hurd-i386/submitted-tst-rfc3484.diff | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/patches/hurd-i386/submitted-tst-rfc3484.diff 
b/debian/patches/hurd-i386/submitted-tst-rfc3484.diff
index 8655354..cee6a24 100644
--- a/debian/patches/hurd-i386/submitted-tst-rfc3484.diff
+++ b/debian/patches/hurd-i386/submitted-tst-rfc3484.diff
@@ -107,7 +107,7 @@ Index: glibc-2.25/inet/tst-inet6_scopeid_pton.c
 +#include 
 +
 +#define isdigit_l(c, locale) isdigit(c)
-+#define strtoull_l_internal(s, end, base, group, locale) strtoul(s, end, 
base)
++#define strtoull_l_internal(s, end, base, group, locale) strtoull(s, end, 
base)
 +#define __if_nametoindex if_nametoindex
 +#include "inet6_scopeid_pton.c"
  

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-glibc/glibc.git



[glibc] 03/04: debian/patches/any/local-bits-sigstack.diff: new patch to fix on Hurd and kFreeBSD.

2017-08-04 Thread Aurelien Jarno
This is an automated email from the git hooks/post-receive script.

aurel32 pushed a commit to branch glibc-2.25
in repository glibc.

commit 6d76e90c6a33f7f0aef7b4102fdc06d684db7a58
Author: Aurelien Jarno 
Date:   Sat Aug 5 01:53:27 2017 +0200

debian/patches/any/local-bits-sigstack.diff: new patch to fix 
 on Hurd and kFreeBSD.
---
 debian/changelog|  2 ++
 debian/patches/any/local-bits-sigstack.diff | 16 
 debian/patches/series   |  1 +
 3 files changed, 19 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index a2e3be6..9276e93 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -16,6 +16,8 @@ glibc (2.25-0experimental1) UNRELEASED; urgency=medium
   * debian/patches/kfreebsd/local-sysdeps.diff, local-fbtl.diff:
 update to revision 6171 (from glibc-bsd).
   * testsuite-xfail-debian.mk: update for kfreebsd-i386.
+  * debian/patches/any/local-bits-sigstack.diff: new patch to fix
+ on Hurd and kFreeBSD.
 
  -- Aurelien Jarno   Wed, 02 Aug 2017 19:03:14 +0200
 
diff --git a/debian/patches/any/local-bits-sigstack.diff 
b/debian/patches/any/local-bits-sigstack.diff
new file mode 100644
index 000..563e15f
--- /dev/null
+++ b/debian/patches/any/local-bits-sigstack.diff
@@ -0,0 +1,16 @@
+Fix stack_t header hygiene on Hurd/kFreeBSD
+
+Done upstream in the linux version in c66b29f9cce9bf7c67d55879dff5e4cd03ecfac1.
+Fixed in 2.26 in a different way.
+
+--- a/bits/sigstack.h
 b/bits/sigstack.h
+@@ -23,6 +23,8 @@
+ # error "Never include this file directly.  Use  instead"
+ #endif
+ 
++#define __need_size_t
++#include 
+ 
+ /* Structure describing a signal stack (obsolete).  */
+ struct sigstack
diff --git a/debian/patches/series b/debian/patches/series
index 2273e01..a8e1422 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -209,3 +209,4 @@ any/local-libpic.diff
 any/local-bootstrap-headers.diff
 any/submitted-unicode-9.0.0.diff
 any/cvs-malloc-hardening.diff
+any/local-bits-sigstack.diff

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-glibc/glibc.git



[glibc] 01/04: debian/patches/kfreebsd/local-sysdeps.diff, local-fbtl.diff: update to revision 6171 (from glibc-bsd).

2017-08-04 Thread Aurelien Jarno
This is an automated email from the git hooks/post-receive script.

aurel32 pushed a commit to branch glibc-2.25
in repository glibc.

commit e17af1f48f9d54c11a041ddc12b8b06cd1329c62
Author: Aurelien Jarno 
Date:   Fri Aug 4 23:35:45 2017 +0200

debian/patches/kfreebsd/local-sysdeps.diff, local-fbtl.diff: update to 
revision 6171 (from glibc-bsd).
---
 debian/changelog   |  3 ++-
 debian/patches/kfreebsd/local-sysdeps.diff | 17 +
 2 files changed, 11 insertions(+), 9 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 749d196..a2e3be6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -14,7 +14,8 @@ glibc (2.25-0experimental1) UNRELEASED; urgency=medium
   [ Aurelien Jarno ]
   * debian/patches/git-updates.diff: update from upstream stable branch.
   * debian/patches/kfreebsd/local-sysdeps.diff, local-fbtl.diff:
-update to revision 6168 (from glibc-bsd).
+update to revision 6171 (from glibc-bsd).
+  * testsuite-xfail-debian.mk: update for kfreebsd-i386.
 
  -- Aurelien Jarno   Wed, 02 Aug 2017 19:03:14 +0200
 
diff --git a/debian/patches/kfreebsd/local-sysdeps.diff 
b/debian/patches/kfreebsd/local-sysdeps.diff
index bb5e4c6..edb3e71 100644
--- a/debian/patches/kfreebsd/local-sysdeps.diff
+++ b/debian/patches/kfreebsd/local-sysdeps.diff
@@ -3830,10 +3830,10 @@
 +
 +/* Magic IPv4 addresses defined in FreeBSD version of , but not
 +   included in Glibc version of the same header. */
-+#define   INADDR_ALLRPTS_GROUP(u_int32_t)0xe016   /* 224.0.0.22, 
IGMPv3 */
-+#define   INADDR_CARP_GROUP   (u_int32_t)0xe012   /* 224.0.0.18 */
-+#define   INADDR_PFSYNC_GROUP (u_int32_t)0xe0f0   /* 224.0.0.240 
*/
-+#define   INADDR_ALLMDNS_GROUP(u_int32_t)0xe0fb   /* 224.0.0.251 
*/
++#define   INADDR_ALLRPTS_GROUP(uint32_t)0xe016/* 224.0.0.22, 
IGMPv3 */
++#define   INADDR_CARP_GROUP   (uint32_t)0xe012/* 224.0.0.18 */
++#define   INADDR_PFSYNC_GROUP (uint32_t)0xe0f0/* 224.0.0.240 
*/
++#define   INADDR_ALLMDNS_GROUP(uint32_t)0xe0fb/* 224.0.0.251 
*/
 +
 +#ifdef __USE_MISC
 +
@@ -3996,7 +3996,7 @@
 +
 +__uint32_t st_gen;/* Generation number.  */
 +
-+__quad_t __unused1[2];
++__uint64_t __unused1[2];
 +  };
 +#endif
 +
@@ -28981,7 +28981,7 @@
 +#endif
 --- /dev/null
 +++ b/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/ucontext.h
-@@ -0,0 +1,48 @@
+@@ -0,0 +1,49 @@
 +/* Data structures for user-level context switching.  Generic version.
 +   Copyright (C) 1997-1999, 2001-2002 Free Software Foundation, Inc.
 +   This file is part of the GNU C Library.
@@ -29010,9 +29010,10 @@
 +#include 
 +#include 
 +
-+/* We need the signal context definitions even if they are not used
-+   included in .  */
++/* We need the signal context definitions even if they are not exposed
++   by .  */
 +#include 
++#include 
 +
 +/* This include file defines the type 'mcontext_t'.  */
 +#include 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-glibc/glibc.git



[glibc] 02/04: testsuite-xfail-debian.mk: update for kfreebsd-i386.

2017-08-04 Thread Aurelien Jarno
This is an automated email from the git hooks/post-receive script.

aurel32 pushed a commit to branch glibc-2.25
in repository glibc.

commit 0dcd9e3ad8140cd4ddac05c68377b3e4a9a0a579
Author: Aurelien Jarno 
Date:   Fri Aug 4 22:38:25 2017 +0200

testsuite-xfail-debian.mk: update for kfreebsd-i386.
---
 debian/testsuite-xfail-debian.mk | 28 
 1 file changed, 28 insertions(+)

diff --git a/debian/testsuite-xfail-debian.mk b/debian/testsuite-xfail-debian.mk
index 938bab6..a5e130a 100644
--- a/debian/testsuite-xfail-debian.mk
+++ b/debian/testsuite-xfail-debian.mk
@@ -758,25 +758,38 @@ endif
 # kfreebsd-*
 ##
 ifeq ($(config-os),kfreebsd-gnu)
+
+# Most of these tests fail because fsid_t is defined as an union to
+# support both __val (POSIX) and val (BSD) name.
 test-xfail-ISO/ctype.h/conform = yes
 test-xfail-ISO/signal.h/conform = yes
 test-xfail-ISO/stdio.h/conform = yes
+test-xfail-ISO/math.h/conform = yes
 test-xfail-ISO/time.h/conform = yes
 test-xfail-ISO11/ctype.h/conform = yes
+test-xfail-ISO11/inttypes.h/conform = yes
+test-xfail-ISO11/math.h/conform = yes
 test-xfail-ISO11/signal.h/conform = yes
+test-xfail-ISO11/stdint.h/conform = yes
 test-xfail-ISO11/stdio.h/conform = yes
 test-xfail-ISO11/time.h/conform = yes
+test-xfail-ISO11/tgmath.h/conform = yes
 test-xfail-ISO11/wctype.h/conform = yes
 test-xfail-ISO99/ctype.h/conform = yes
+test-xfail-ISO99/inttypes.h/conform = yes
+test-xfail-ISO99/math.h/conform = yes
 test-xfail-ISO99/signal.h/conform = yes
+test-xfail-ISO99/stdint.h/conform = yes
 test-xfail-ISO99/stdio.h/conform = yes
 test-xfail-ISO99/time.h/conform = yes
+test-xfail-ISO99/tgmath.h/conform = yes
 test-xfail-ISO99/wctype.h/conform = yes
 test-xfail-POSIX/aio.h/conform = yes
 test-xfail-POSIX/ctype.h/conform = yes
 test-xfail-POSIX/dirent.h/conform = yes
 test-xfail-POSIX/fcntl.h/conform = yes
 test-xfail-POSIX/grp.h/conform = yes
+test-xfail-POSIX/math.h/conform = yes
 test-xfail-POSIX/mqueue.h/conform = yes
 test-xfail-POSIX/pthread.h/conform = yes
 test-xfail-POSIX/pwd.h/conform = yes
@@ -798,6 +811,8 @@ test-xfail-POSIX2008/dirent.h/conform = yes
 test-xfail-POSIX2008/errno.h/conform = yes
 test-xfail-POSIX2008/fcntl.h/conform = yes
 test-xfail-POSIX2008/grp.h/conform = yes
+test-xfail-POSIX2008/inttypes.h/conform = yes
+test-xfail-POSIX2008/math.h/conform = yes
 test-xfail-POSIX2008/monetary.h/conform = yes
 test-xfail-POSIX2008/mqueue.h/conform = yes
 test-xfail-POSIX2008/net/if.h/conform = yes
@@ -808,6 +823,7 @@ test-xfail-POSIX2008/pwd.h/conform = yes
 test-xfail-POSIX2008/regex.h/conform = yes
 test-xfail-POSIX2008/sched.h/conform = yes
 test-xfail-POSIX2008/semaphore.h/conform = yes
+test-xfail-POSIX2008/stdint.h/conform = yes
 test-xfail-POSIX2008/spawn.h/conform = yes
 test-xfail-POSIX2008/stdio.h/conform = yes
 test-xfail-POSIX2008/stropts.h/conform = yes
@@ -819,6 +835,7 @@ test-xfail-POSIX2008/sys/times.h/conform = yes
 test-xfail-POSIX2008/sys/types.h/conform = yes
 test-xfail-POSIX2008/sys/un.h/conform = yes
 test-xfail-POSIX2008/termios.h/conform = yes
+test-xfail-POSIX2008/tgmath.h/conform = yes
 test-xfail-POSIX2008/time.h/conform = yes
 test-xfail-POSIX2008/unistd.h/conform = yes
 test-xfail-POSIX2008/utime.h/conform = yes
@@ -830,6 +847,7 @@ test-xfail-UNIX98/errno.h/conform = yes
 test-xfail-UNIX98/fcntl.h/conform = yes
 test-xfail-UNIX98/ftw.h/conform = yes
 test-xfail-UNIX98/grp.h/conform = yes
+test-xfail-UNIX98/math.h/conform = yes
 test-xfail-UNIX98/monetary.h/conform = yes
 test-xfail-UNIX98/mqueue.h/conform = yes
 test-xfail-UNIX98/pthread.h/conform = yes
@@ -870,6 +888,8 @@ test-xfail-XOPEN2K/errno.h/conform = yes
 test-xfail-XOPEN2K/fcntl.h/conform = yes
 test-xfail-XOPEN2K/ftw.h/conform = yes
 test-xfail-XOPEN2K/grp.h/conform = yes
+test-xfail-XOPEN2K/inttypes.h/conform = yes
+test-xfail-XOPEN2K/math.h/conform = yes
 test-xfail-XOPEN2K/monetary.h/conform = yes
 test-xfail-XOPEN2K/mqueue.h/conform = yes
 test-xfail-XOPEN2K/net/if.h/conform = yes
@@ -883,6 +903,7 @@ test-xfail-XOPEN2K/regex.h/conform = yes
 test-xfail-XOPEN2K/sched.h/conform = yes
 test-xfail-XOPEN2K/spawn.h/conform = yes
 test-xfail-XOPEN2K/stdio.h/conform = yes
+test-xfail-XOPEN2K/stdint.h/conform = yes
 test-xfail-XOPEN2K/stdlib.h/conform = yes
 test-xfail-XOPEN2K/stropts.h/conform = yes
 test-xfail-XOPEN2K/sys/ipc.h/conform = yes
@@ -903,6 +924,7 @@ test-xfail-XOPEN2K/sys/uio.h/conform = yes
 test-xfail-XOPEN2K/sys/un.h/conform = yes
 test-xfail-XOPEN2K/termios.h/conform = yes
 test-xfail-XOPEN2K/time.h/conform = yes
+test-xfail-XOPEN2K/tgmath.h/conform = yes
 test-xfail-XOPEN2K/unistd.h/conform = yes
 test-xfail-XOPEN2K/utime.h/conform = yes
 test-xfail-XOPEN2K/utmpx.h/conform = yes
@@ -916,6 +938,8 @@ test-xfail-XOPEN2K8/errno.h/conform = yes
 test-xfail-XOPEN2K8/fcntl.h/conform = yes
 test-xfail-XOPEN2K8/ftw.h/conform = yes
 test-xfail-XOPEN2K8/grp.h/conform = 

[glibc] branch glibc-2.25 updated (6471060 -> 883ffec)

2017-08-04 Thread Aurelien Jarno
This is an automated email from the git hooks/post-receive script.

aurel32 pushed a change to branch glibc-2.25
in repository glibc.

  from  6471060   Refresh hurd-i386/tg2.25-tls.diff
   new  883ffec   debian/patches/kfreebsd/local-sysdeps.diff, 
local-fbtl.diff: update to revision 6161 (from glibc-bsd).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog   |   2 +
 debian/patches/kfreebsd/local-fbtl.diff| 484 -
 debian/patches/kfreebsd/local-sysdeps.diff | 241 +++---
 3 files changed, 468 insertions(+), 259 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-glibc/glibc.git



Bug#870614: libc6-i386 - SIGSEGV when resolving hostname and /etc/hosts contains ipv6 adresses

2017-08-04 Thread Aurelien Jarno
On 2017-08-03 11:48, Sebastian Hüftlein wrote:
> Package: libc6-i386
> Version: 2.24-11+deb9u1
> 
> Using gethostbyname in a fpc 2.4 application causes a crash with the
> following error:
> 
> An unhandled exception occurred at $F763F591 :
> EAccessViolation : Access violation
>   $F763F591
> 
> 
> checking the gdb backtrace:
> 
> Program received signal SIGSEGV, Segmentation fault.
> 0xf7f15591 in inet_pton () from /lib32/libc.so.6
> (gdb) backtrace
> #0  0xf7f15591 in inet_pton () from /lib32/libc.so.6
> #1  0xf7d5bec1 in ?? () from /lib32/libnss_files.so.2
> #2  0xf7d5c310 in _nss_files_gethostbyname3_r () from
> /lib32/libnss_files.so.2
> #3  0xf7d5c8ad in _nss_files_gethostbyname_r () from
> /lib32/libnss_files.so.2
> #4  0xf7f0a4fc in gethostbyname_r () from /lib32/libc.so.6
> #5  0xf7f09bac in gethostbyname () from /lib32/libc.so.6
> #6  0x0808198c in ?? ()
> #7  0x08081825 in ?? ()
> #8  0x08095e47 in ?? ()
> #9  0x08057a2b in ?? ()
> #10 0x08054b2f in ?? ()
> #11 0x08052cdd in ?? ()
> #12 0x08052ab3 in ?? ()
> #13 0x08052a1c in ?? ()
> #14 0x08068a21 in ?? ()
> #15 0x080679e4 in ?? ()
> #16 0x0805c185 in ?? ()
> #17 0x08053acf in ?? ()
> #18 0x08052cdd in ?? ()
> #19 0x08052ab3 in ?? ()
> #20 0x08052a1c in ?? ()
> #21 0x080494d2 in ?? ()
> #22 0x08048da8 in ?? ()
> #23 0xf7e29276 in __libc_start_main () from /lib32/libc.so.6
> #24 0x08048302 in ?? ()
> 
> 
> $ dpkg -s libc6-i386
> Package: libc6-i386
> Status: install ok installed
> Priority: optional
> Section: libs
> Installed-Size: 11250
> Maintainer: GNU Libc Maintainers 
> Architecture: amd64
> Source: glibc
> Version: 2.24-11+deb9u1
> Replaces: libc6-dev-i386
> Depends: libc6 (= 2.24-11+deb9u1)
> Conffiles:
>  /etc/ld.so.conf.d/zz_i386-biarch-compat.conf
> 82fedc1c0e9655edf8debad064dca6f1
> Description: GNU C Library: 32-bit shared libraries for AMD64
>  This package includes shared versions of the standard C
>  library and the standard math library, as well as many others.
>  This is the 32bit version of the library, meant for AMD64 systems.
> Homepage: http://www.gnu.org/software/libc/libc.html
> 
> $ uname -a
> Linux stretch-vm 4.9.0-3-amd64 #1 SMP Debian 4.9.30-2+deb9u2 (2017-06-26)
> x86_64 GNU/Linux
> 
> 
> 
> Removing the default ipv6 entires from the /etc/hosts file fixes the crash.
> 
> echo 1 > /proc/sys/net/ipv6/conf/all/disable_ipv6 has no effect.
> 
> 
> This seems to be a bug in libc6-i386? Older versions on Wheezy in a similar
> setup are running the same binary fine, even with the /etc/hosts entries
> present.

Could you please provide a way to reproduce the issue:
- the contents of /etc/hosts
- the source code to reproduce the issue and how to build it.

Thanks,
Aurelien

-- 
Aurelien Jarno  GPG: 4096R/1DDD8C9B
aurel...@aurel32.net http://www.aurel32.net



[glibc] branch glibc-2.25 updated (2fd434d -> 6471060)

2017-08-04 Thread Samuel Thibault
This is an automated email from the git hooks/post-receive script.

sthibault pushed a change to branch glibc-2.25
in repository glibc.

  from  2fd434d   test regression
   new  6471060   Refresh hurd-i386/tg2.25-tls.diff

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/patches/hurd-i386/tg2.25-tls.diff | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-glibc/glibc.git



[glibc] 01/01: Refresh hurd-i386/tg2.25-tls.diff

2017-08-04 Thread Samuel Thibault
This is an automated email from the git hooks/post-receive script.

sthibault pushed a commit to branch glibc-2.25
in repository glibc.

commit 647106059717b32097d7af75a0e310b4ae751a35
Author: Samuel Thibault 
Date:   Fri Aug 4 15:34:45 2017 +0200

Refresh hurd-i386/tg2.25-tls.diff
---
 debian/patches/hurd-i386/tg2.25-tls.diff | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/patches/hurd-i386/tg2.25-tls.diff 
b/debian/patches/hurd-i386/tg2.25-tls.diff
index abdf290..5e274e4 100644
--- a/debian/patches/hurd-i386/tg2.25-tls.diff
+++ b/debian/patches/hurd-i386/tg2.25-tls.diff
@@ -35,5 +35,5 @@ Signed-off-by: Samuel Thibault 
 +  /* We need to setup TLS before starting sigthread and set stack guard.  */
 +  __libc_setup_tls ();
extern void __pthread_initialize_minimal(void);
-   __pthread_initialize_minimal();
- #endif
+   if (__pthread_initialize_minimal != NULL)
+ __pthread_initialize_minimal();

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-glibc/glibc.git



[glibc] branch glibc-2.25 updated (6fd93d6 -> 2fd434d)

2017-08-04 Thread Samuel Thibault
This is an automated email from the git hooks/post-receive script.

sthibault pushed a change to branch glibc-2.25
in repository glibc.

  from  6fd93d6   Fix typo
   new  2fd434d   test regression

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/testsuite-xfail-debian.mk | 5 +
 1 file changed, 5 insertions(+)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-glibc/glibc.git



[glibc] branch glibc-2.25 updated (0fa4b88 -> 6fd93d6)

2017-08-04 Thread Samuel Thibault
This is an automated email from the git hooks/post-receive script.

sthibault pushed a change to branch glibc-2.25
in repository glibc.

  from  0fa4b88   debian/patches/git-updates.diff: update from upstream 
stable branch.
   new  6fd93d6   Fix typo

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/testsuite-xfail-debian.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-glibc/glibc.git



[glibc] 01/01: test regression

2017-08-04 Thread Samuel Thibault
This is an automated email from the git hooks/post-receive script.

sthibault pushed a commit to branch glibc-2.25
in repository glibc.

commit 2fd434d9a7a3314616ee8e32d73fd49bf2ca9d0a
Author: Samuel Thibault 
Date:   Fri Aug 4 13:09:14 2017 +

test regression
---
 debian/testsuite-xfail-debian.mk | 5 +
 1 file changed, 5 insertions(+)

diff --git a/debian/testsuite-xfail-debian.mk b/debian/testsuite-xfail-debian.mk
index d9bd556..938bab6 100644
--- a/debian/testsuite-xfail-debian.mk
+++ b/debian/testsuite-xfail-debian.mk
@@ -733,6 +733,11 @@ test-xfail-tst-support_record_failure-2 = yes
 test-xfail-tst-wcstod-round = yes
 test-xfail-tst-env-setuid = yes
 test-xfail-tst-env-setuid-tunables = yes
+
+# regression in 2.25
+test-xfail-test-ildouble = yes
+test-xfail-test-ldouble = yes
+test-xfail-test-ldouble-finite = yes
 endif
 
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-glibc/glibc.git



[glibc] 01/01: Fix typo

2017-08-04 Thread Samuel Thibault
This is an automated email from the git hooks/post-receive script.

sthibault pushed a commit to branch glibc-2.25
in repository glibc.

commit 6fd93d6a66c801422055c9bb6cbe2565ba739311
Author: Samuel Thibault 
Date:   Fri Aug 4 13:06:42 2017 +

Fix typo
---
 debian/testsuite-xfail-debian.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/testsuite-xfail-debian.mk b/debian/testsuite-xfail-debian.mk
index b886144..d9bd556 100644
--- a/debian/testsuite-xfail-debian.mk
+++ b/debian/testsuite-xfail-debian.mk
@@ -731,8 +731,8 @@ test-xfail-tst-vfork3 = yes
 test-xfail-tst-support_record_failure = yes
 test-xfail-tst-support_record_failure-2 = yes
 test-xfail-tst-wcstod-round = yes
-test-xfail-elf/tst-env-setuid = yes
-test-xfail-elf/tst-env-setuid-tunables = yes
+test-xfail-tst-env-setuid = yes
+test-xfail-tst-env-setuid-tunables = yes
 endif
 
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-glibc/glibc.git