]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
conformtest: XFAIL uc_sigmask test for ia64 (bug 21634).
authorJoseph Myers <joseph@codesourcery.com>
Tue, 20 Jun 2017 17:47:32 +0000 (17:47 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Tue, 20 Jun 2017 17:47:32 +0000 (17:47 +0000)
This patch XFAILs one test where the ia64 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 #21634]
* sysdeps/unix/sysv/linux/ia64/Makefile [$(subdir) = conform]
(conformtest-xfail-conds): New variable.
* conform/data/signal.h-data (uc_sigmask): XFAIL for ia64-linux.
* conform/data/ucontext.h-data (uc_sigmask): Likewise.

ChangeLog
conform/data/signal.h-data
conform/data/ucontext.h-data
sysdeps/unix/sysv/linux/ia64/Makefile

index ebab4ce0b6f113c4886a6e7c1d4b6404e6d919ff..99ee480b23696540e9cbcd57ec68b177b7f200cd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2017-06-20  Joseph Myers  <joseph@codesourcery.com>
+
+       [BZ #21634]
+       * sysdeps/unix/sysv/linux/ia64/Makefile [$(subdir) = conform]
+       (conformtest-xfail-conds): New variable.
+       * conform/data/signal.h-data (uc_sigmask): XFAIL for ia64-linux.
+       * conform/data/ucontext.h-data (uc_sigmask): Likewise.
+
 2017-06-20  Wilco Dijkstra  <wdijkstr@arm.com>
 
        * benchtests/powf-inputs: Add reduced trace from wrf.
index 571816484fe7921ea7a0bee8b03de47ad57e199e..08635d2c6b4ef1266fc75cb4d9ed2b33c35d9367 100644 (file)
@@ -24,7 +24,8 @@ type mcontext_t
 
 type ucontext_t
 element ucontext_t {ucontext_t*} uc_link
-element ucontext_t sigset_t uc_sigmask
+// Bug 21634: uc_sigmask has wrong type.
+xfail[ia64-linux]-element ucontext_t sigset_t uc_sigmask
 element ucontext_t stack_t uc_stack
 element ucontext_t mcontext_t uc_mcontext
 
@@ -135,7 +136,8 @@ constant SIGSTKSZ
 type ucontext_t
 
 element ucontext_t {ucontext_t*} uc_link
-element ucontext_t sigset_t uc_sigmask
+// Bug 21634: uc_sigmask has wrong type.
+xfail[ia64-linux]-element ucontext_t sigset_t uc_sigmask
 element ucontext_t stack_t uc_stack
 element ucontext_t mcontext_t uc_mcontext
 
index c1ddf19d94b1b894af23874649d5beffc1cb26c9..7e0b4a7f68b1070c1ab036bfc12f70c20e0b808c 100644 (file)
@@ -4,7 +4,8 @@ type mcontext_t
 type ucontext_t
 
 element ucontext_t {ucontext_t*} uc_link
-element ucontext_t sigset_t uc_sigmask
+// Bug 21634: uc_sigmask has wrong type.
+xfail[ia64-linux]-element ucontext_t sigset_t uc_sigmask
 element ucontext_t stack_t uc_stack
 element ucontext_t mcontext_t uc_mcontext
 
index 4d6766db5e73dde5f2d6a5fb3d933b9a0975d6b6..97fc7df0b122d6a020582d429ba073a4cdf75ad8 100644 (file)
@@ -25,3 +25,8 @@ endif
 ifeq ($(subdir),nptl)
 libpthread-sysdep_routines += __ia64_longjmp unwind_longjmp __sigstack_longjmp
 endif
+
+ifeq ($(subdir),conform)
+# For bug 21634.
+conformtest-xfail-conds += ia64-linux
+endif