From patchwork Tue Jun 20 17:48:19 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joseph Myers X-Patchwork-Id: 21145 Received: (qmail 30888 invoked by alias); 20 Jun 2017 17:48:52 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 23158 invoked by uid 89); 20 Jun 2017 17:48:42 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-24.4 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_PASS, URIBL_RED autolearn=ham version=3.3.2 spammy= X-HELO: relay1.mentorg.com Date: Tue, 20 Jun 2017 17:48:19 +0000 From: Joseph Myers To: Subject: conformtest: XFAIL uc_sigmask test for ia64 (bug 21634) [committed] Message-ID: User-Agent: Alpine 2.20 (DEB 67 2015-01-07) MIME-Version: 1.0 X-ClientProxiedBy: svr-ies-mbx-01.mgc.mentorg.com (139.181.222.1) To svr-ies-mbx-01.mgc.mentorg.com (139.181.222.1) 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. Committed. 2017-06-20 Joseph Myers [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. diff --git a/conform/data/signal.h-data b/conform/data/signal.h-data index 5718164..08635d2 100644 --- a/conform/data/signal.h-data +++ b/conform/data/signal.h-data @@ -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 diff --git a/conform/data/ucontext.h-data b/conform/data/ucontext.h-data index c1ddf19..7e0b4a7 100644 --- a/conform/data/ucontext.h-data +++ b/conform/data/ucontext.h-data @@ -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 diff --git a/sysdeps/unix/sysv/linux/ia64/Makefile b/sysdeps/unix/sysv/linux/ia64/Makefile index 4d6766d..97fc7df 100644 --- a/sysdeps/unix/sysv/linux/ia64/Makefile +++ b/sysdeps/unix/sysv/linux/ia64/Makefile @@ -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