diff options
author | Joseph Myers <joseph@codesourcery.com> | 2017-04-25 16:00:28 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2017-04-25 16:00:28 +0000 |
commit | 3fa6e4872d63b57d77c545ef1fbcbb8b0796d232 (patch) | |
tree | 10462398ae769ce2cfcb43427074f8b08639b364 /conform | |
parent | 249548e476495e4714ba1f4593ebc04ce5dc2094 (diff) | |
download | glibc-3fa6e4872d63b57d77c545ef1fbcbb8b0796d232.tar.gz |
conformtest: Allow *_t in sys/socket.h.
The conformtest expectations in sys/socket.h are missing the standard
POSIX allowance for all headers to define *_t names. For XSI standard
versions that allowance comes in via the permission to include
<sys/uio.h> (for which the expectations properly allow *_t), but for
non-XSI POSIX nothing brings in that allowance and spurious namespace
failures occur. This patch adds the required permission to the
expectations to remove the spurious failures (by itself this does not
allow any XFAILs to be removed).
Tested for x86_64.
* conform/data/sys/socket.h-data (*_t): Allow.
Diffstat (limited to 'conform')
-rw-r--r-- | conform/data/sys/socket.h-data | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/conform/data/sys/socket.h-data b/conform/data/sys/socket.h-data index 442d4d288a..7cdfec530d 100644 --- a/conform/data/sys/socket.h-data +++ b/conform/data/sys/socket.h-data @@ -136,4 +136,5 @@ allow MSG_* allow PF_* allow SCM_* allow SHUT_* +allow *_t #endif |