From patchwork Fri Aug 24 13:55:59 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: skip gcc.target/i386/asm-dialect-1.c on darwin Date: Fri, 24 Aug 2012 03:55:59 -0000 From: Jack Howarth X-Patchwork-Id: 179841 Message-Id: <20120824135559.GA15501@bromo.med.uc.edu> To: gcc-patches@gcc.gnu.org Cc: mikestump@comcast.net, iain@codesourcery.com, rth@gcc.gnu.org Currently the new gcc.target/i386/asm-dialect-1.c testcase is failing on darwin due the absence of support for -masm=intel on that target. The attached patch skips this test on darwin. Tested on x86_64-apple-darwin12... http://gcc.gnu.org/ml/gcc-testresults/2012-08/msg02042.html Okay for gcc trunk? Jack 2012-08-24 Jack Howarth PR target/54255 * gcc.target/i386/asm-dialect-1.c: Skip on darwin. Index: gcc/testsuite/gcc.target/i386/asm-dialect-1.c warth@bromo ~]$ vi =================================================================== --- gcc/testsuite/gcc.target/i386/asm-dialect-1.c (revision 190647) +++ gcc/testsuite/gcc.target/i386/asm-dialect-1.c (working copy) @@ -1,4 +1,5 @@ /* { dg-options "-masm=intel" } */ +/* { dg-skip-if "" { *-*-darwin* } { "*" } { "" } } */ extern void abort (void);