mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-30 08:40: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.
16 lines
313 B
Makefile
16 lines
313 B
Makefile
# See Makeconfig regarding the use of default-abi.
|
|
default-abi := 32
|
|
|
|
ifeq ($(subdir),csu)
|
|
ifeq (yes,$(build-shared))
|
|
sysdep_routines += divdi3
|
|
shared-only-routines += divdi3
|
|
CPPFLAGS-divdi3.c = -Din_divdi3_c
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(subdir),conform)
|
|
# For bug 21635.
|
|
conformtest-xfail-conds += powerpc32-linux
|
|
endif
|