mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-13 00:30:07 +00:00
46ad8909ce
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.
25 lines
721 B
Plaintext
25 lines
721 B
Plaintext
#if !defined ISO && !defined ISO99 && !defined ISO11 && !defined POSIX && !defined XPG4 && !defined POSIX2008 && !defined XOPEN2K8
|
|
type mcontext_t
|
|
|
|
type ucontext_t
|
|
|
|
element ucontext_t {ucontext_t*} uc_link
|
|
// Bug 21634: uc_sigmask has wrong type.
|
|
xfail[ia64-linux]-element ucontext_t sigset_t uc_sigmask
|
|
element ucontext_t stack_t uc_stack
|
|
// Bug 21635: uc_mcontext has wrong type.
|
|
xfail[powerpc32-linux]-element ucontext_t mcontext_t uc_mcontext
|
|
|
|
type sigset_t
|
|
type stack_t
|
|
|
|
function int getcontext (ucontext_t*)
|
|
function int setcontext (const ucontext_t*)
|
|
function void makecontext (ucontext_t*, void(*)(void), int, ...)
|
|
function int swapcontext (ucontext_t*, const ucontext_t*)
|
|
|
|
allow uc_*
|
|
allow ss_*
|
|
allow *_t
|
|
#endif
|