diff options
author | Joseph Myers <joseph@codesourcery.com> | 2017-03-18 00:24:13 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2017-03-18 00:24:13 +0000 |
commit | 345118d7f5bc42c8d4c3a8ef70b9b709fa57e93d (patch) | |
tree | c025cfd37b9434d93b400c9d06ee4c8b77835376 /conform/data | |
parent | 19641dbd61fe0440fa1f0ebd2f358b5ba98e839f (diff) | |
download | glibc-345118d7f5bc42c8d4c3a8ef70b9b709fa57e93d.tar glibc-345118d7f5bc42c8d4c3a8ef70b9b709fa57e93d.tar.gz glibc-345118d7f5bc42c8d4c3a8ef70b9b709fa57e93d.tar.bz2 glibc-345118d7f5bc42c8d4c3a8ef70b9b709fa57e93d.zip |
conformtest: XFAIL tv_nsec tests for x32 (bug 16437).
This patch XFAILs the conformtest tv_nsec tests for x32 so that the
incorrect type does not potentially hide other failures. As this is
not a fix for the bug, it should remain open in Bugzilla.
Tested (compilation only) with build-many-glibcs.py.
[BZ #16437]
* sysdeps/unix/sysv/linux/x86_64/x32/Makefile
[$(subdir) = conform] (conformtest-xfail-conds): New variable.
* conform/data/signal.h-data (timespec.tv_nsec): XFAIL for
x86_64-x32-linux.
* conform/data/sys/select.h-data (timespec.tv_nsec): Likewise.
* conform/data/sys/stat.h-data (timespec.tv_nsec): Likewise.
* conform/data/time.h-data (timespec.tv_nsec): Likewise.
Diffstat (limited to 'conform/data')
-rw-r--r-- | conform/data/signal.h-data | 3 | ||||
-rw-r--r-- | conform/data/sys/select.h-data | 3 | ||||
-rw-r--r-- | conform/data/sys/stat.h-data | 3 | ||||
-rw-r--r-- | conform/data/time.h-data | 3 |
4 files changed, 8 insertions, 4 deletions
diff --git a/conform/data/signal.h-data b/conform/data/signal.h-data index 6fca921492..1443215e40 100644 --- a/conform/data/signal.h-data +++ b/conform/data/signal.h-data @@ -30,7 +30,8 @@ element ucontext_t mcontext_t uc_mcontext type {struct timespec} element {struct timespec} __time_t tv_sec -element {struct timespec} long tv_nsec +// Bug 16437: tv_nsec has wrong type. +xfail[x86_64-x32-linux]-element {struct timespec} long tv_nsec #endif #if defined POSIX || defined UNIX98 || defined XOPEN2K || defined XOPEN2K8 || defined POSIX2008 diff --git a/conform/data/sys/select.h-data b/conform/data/sys/select.h-data index d414ec4624..824fc2ab01 100644 --- a/conform/data/sys/select.h-data +++ b/conform/data/sys/select.h-data @@ -10,7 +10,8 @@ type sigset_t type {struct timespec} element {struct timespec} time_t tv_sec -element {struct timespec} long tv_nsec +// Bug 16437: tv_nsec has wrong type. +xfail[x86_64-x32-linux]-element {struct timespec} long tv_nsec type fd_set #if defined XPG3 || defined XPG4 || defined UNIX98 diff --git a/conform/data/sys/stat.h-data b/conform/data/sys/stat.h-data index 79293bfe19..781cbb26b4 100644 --- a/conform/data/sys/stat.h-data +++ b/conform/data/sys/stat.h-data @@ -61,7 +61,8 @@ element {struct stat} blkcnt_t st_blocks # if defined XOPEN2K8 || defined POSIX2008 type {struct timespec} element {struct timespec} time_t tv_sec -element {struct timespec} long tv_nsec +// Bug 16437: tv_nsec has wrong type. +xfail[x86_64-x32-linux]-element {struct timespec} long tv_nsec # endif #if !defined POSIX && !defined POSIX2008 diff --git a/conform/data/time.h-data b/conform/data/time.h-data index 9fbe54ed12..ee67fcce66 100644 --- a/conform/data/time.h-data +++ b/conform/data/time.h-data @@ -9,7 +9,8 @@ macro-int-constant TIME_UTC > 0 type {struct timespec} element {struct timespec} time_t tv_sec -element {struct timespec} long tv_nsec +// Bug 16437: tv_nsec has wrong type. +xfail[x86_64-x32-linux]-element {struct timespec} long tv_nsec #endif type size_t |