mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-22 19:00:07 +00:00
conformtest: XFAIL uc_mcontext test for powerpc32 (bug 21635).
This patch XFAILs one test where the powerpc32 ucontext_t has the wrong type of a field, to allow the conform/ tests as a whole to pass once the namespace issues are fixed. Tested with build-many-glibcs.py. [BZ #21635] * sysdeps/unix/sysv/linux/powerpc/powerpc32/Makefile [$(subdir) = conform] (conformtest-xfail-conds): New variable. * conform/data/signal.h-data (uc_mcontext): XFAIL for powerpc32-linux. * conform/data/ucontext.h-data (uc_mcontext): Likewise.
This commit is contained in:
parent
e0b5a3b654
commit
46ad8909ce
@ -1,5 +1,12 @@
|
|||||||
2017-06-20 Joseph Myers <joseph@codesourcery.com>
|
2017-06-20 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
|
[BZ #21635]
|
||||||
|
* sysdeps/unix/sysv/linux/powerpc/powerpc32/Makefile
|
||||||
|
[$(subdir) = conform] (conformtest-xfail-conds): New variable.
|
||||||
|
* conform/data/signal.h-data (uc_mcontext): XFAIL for
|
||||||
|
powerpc32-linux.
|
||||||
|
* conform/data/ucontext.h-data (uc_mcontext): Likewise.
|
||||||
|
|
||||||
[BZ #21634]
|
[BZ #21634]
|
||||||
* sysdeps/unix/sysv/linux/ia64/Makefile [$(subdir) = conform]
|
* sysdeps/unix/sysv/linux/ia64/Makefile [$(subdir) = conform]
|
||||||
(conformtest-xfail-conds): New variable.
|
(conformtest-xfail-conds): New variable.
|
||||||
|
@ -27,7 +27,8 @@ element ucontext_t {ucontext_t*} uc_link
|
|||||||
// Bug 21634: uc_sigmask has wrong type.
|
// Bug 21634: uc_sigmask has wrong type.
|
||||||
xfail[ia64-linux]-element ucontext_t sigset_t uc_sigmask
|
xfail[ia64-linux]-element ucontext_t sigset_t uc_sigmask
|
||||||
element ucontext_t stack_t uc_stack
|
element ucontext_t stack_t uc_stack
|
||||||
element ucontext_t mcontext_t uc_mcontext
|
// Bug 21635: uc_mcontext has wrong type.
|
||||||
|
xfail[powerpc32-linux]-element ucontext_t mcontext_t uc_mcontext
|
||||||
|
|
||||||
type {struct timespec}
|
type {struct timespec}
|
||||||
element {struct timespec} __time_t tv_sec
|
element {struct timespec} __time_t tv_sec
|
||||||
@ -139,7 +140,8 @@ element ucontext_t {ucontext_t*} uc_link
|
|||||||
// Bug 21634: uc_sigmask has wrong type.
|
// Bug 21634: uc_sigmask has wrong type.
|
||||||
xfail[ia64-linux]-element ucontext_t sigset_t uc_sigmask
|
xfail[ia64-linux]-element ucontext_t sigset_t uc_sigmask
|
||||||
element ucontext_t stack_t uc_stack
|
element ucontext_t stack_t uc_stack
|
||||||
element ucontext_t mcontext_t uc_mcontext
|
// Bug 21635: uc_mcontext has wrong type.
|
||||||
|
xfail[powerpc32-linux]-element ucontext_t mcontext_t uc_mcontext
|
||||||
|
|
||||||
type stack_t
|
type stack_t
|
||||||
|
|
||||||
|
@ -7,7 +7,8 @@ element ucontext_t {ucontext_t*} uc_link
|
|||||||
// Bug 21634: uc_sigmask has wrong type.
|
// Bug 21634: uc_sigmask has wrong type.
|
||||||
xfail[ia64-linux]-element ucontext_t sigset_t uc_sigmask
|
xfail[ia64-linux]-element ucontext_t sigset_t uc_sigmask
|
||||||
element ucontext_t stack_t uc_stack
|
element ucontext_t stack_t uc_stack
|
||||||
element ucontext_t mcontext_t uc_mcontext
|
// Bug 21635: uc_mcontext has wrong type.
|
||||||
|
xfail[powerpc32-linux]-element ucontext_t mcontext_t uc_mcontext
|
||||||
|
|
||||||
type sigset_t
|
type sigset_t
|
||||||
type stack_t
|
type stack_t
|
||||||
|
@ -8,3 +8,8 @@ shared-only-routines += divdi3
|
|||||||
CPPFLAGS-divdi3.c = -Din_divdi3_c
|
CPPFLAGS-divdi3.c = -Din_divdi3_c
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(subdir),conform)
|
||||||
|
# For bug 21635.
|
||||||
|
conformtest-xfail-conds += powerpc32-linux
|
||||||
|
endif
|
||||||
|
Loading…
Reference in New Issue
Block a user