This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Re: How to XFAIL a gcc.dg test?
- To: Mark Mitchell <mark at codesourcery dot com>
- Subject: Re: How to XFAIL a gcc.dg test?
- From: Gabriel Dos Reis <Gabriel dot Dos-Reis at cmla dot ens-cachan dot fr>
- Date: 14 May 2001 15:03:22 +0200
- Cc: Jakub Jelinek <jakub at redhat dot com>, gcc-bugs at gcc dot gnu dot org
- Organization: CMLA, ENS Cachan -- CNRS UMR 8536 (France)
- References: <20010514012105H.mitchell@codesourcery.com>
Mark Mitchell <mark@codesourcery.com> writes:
| I can't figure out how to XFAIL a test that has a target selector.
|
| For example:
|
| { dg-do run { xfail sparc*-*-* } { target sparc*-*-* } }
|
| doesn't work. Is there a way to do this?
You can't put target and xfail on one line. You can break it in
separate lines since repeated occurences of dg-keywords are supported.
In order words, you might want to write
{ dg-do run { target sparc*-*-* } }
{ dg-do run { xfail sparc*-*-* } }
-- Gaby