mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-22 19:00:07 +00:00
conformtest: Add alpha XFAIL for struct netent n_net type (bug 21260).
As noted in bug 21260, sysdeps/unix/sysv/linux/alpha/bits/netdb.h defines struct netent with n_net of type unsigned long instead of the correct uint32_t. This patch XFAILs that test in the conformtest expectations for alpha. (This is not a fix for the bug, and it should not be closed without an actual fix.) Tested for alpha with build-many-glibcs.py. [BZ #21260] * sysdeps/unix/sysv/linux/alpha/Makefile [$(subdir) = conform] (conformtest-xfail-conds): New variable.
This commit is contained in:
parent
c33eac51f4
commit
bb5cc234e1
@ -1,5 +1,9 @@
|
||||
2017-03-17 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
[BZ #21260]
|
||||
* sysdeps/unix/sysv/linux/alpha/Makefile
|
||||
[$(subdir) = conform] (conformtest-xfail-conds): New variable.
|
||||
|
||||
* conform/conformtest.pl ($cross): New variable.
|
||||
(--cross): New command-line option.
|
||||
(runtest): Skip test execution when cross-compiling.
|
||||
|
@ -15,7 +15,8 @@ type {struct netent}
|
||||
element {struct netent} {char*} n_name
|
||||
element {struct netent} {char**} n_aliases
|
||||
element {struct netent} int n_addrtype
|
||||
element {struct netent} uint32_t n_net
|
||||
// Bug 21260: n_net has wrong type.
|
||||
xfail[alpha-linux]-element {struct netent} uint32_t n_net
|
||||
|
||||
type uint32_t
|
||||
|
||||
|
@ -39,3 +39,8 @@ ifeq ($(subdir),nptl)
|
||||
libpthread-routines += sysdep sigprocmask rt_sigaction
|
||||
libpthread-shared-only-routines += sysdep sigprocmask rt_sigaction
|
||||
endif
|
||||
|
||||
ifeq ($(subdir),conform)
|
||||
# For bug 21260.
|
||||
conformtest-xfail-conds += alpha-linux
|
||||
endif
|
||||
|
Loading…
Reference in New Issue
Block a user