mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-05 11:11:04 +00:00
76b2c32a16
POSIX specifies long as the type of elements of struct mq_attr. For x32, they are __syscall_slong_t (i.e. long long). This patch XFAILs the corresponding tests for x32 in the conformtest expectations (the bug should not be closed without an actual fix). Tested with build-many-glibcs.py. [BZ #21279] * sysdeps/unix/sysv/linux/x86_64/x32/Makefile [$(subdir) = conform] (conformtest-xfail-conds): Update comment. * conform/data/mqueue.h-data (mq_attr.mq_flags): XFAIL for x86_64-x32-linux. (mq_attr.mq_maxmsg): Likewise. (mq_attr.mq_msgsize): Likewise. (mq_attr.mq_curmsgs): Likewise.
12 lines
208 B
Makefile
12 lines
208 B
Makefile
# The default ABI is x32.
|
|
default-abi := x32
|
|
|
|
ifeq ($(subdir),misc)
|
|
sysdep_routines += arch_prctl
|
|
endif
|
|
|
|
ifeq ($(subdir),conform)
|
|
# For bugs 16437 and 21279.
|
|
conformtest-xfail-conds += x86_64-x32-linux
|
|
endif
|