diff mbox

[testsuite] MIPS: Skip msa-builtins-err.c if there is no assembly output.

Message ID A614194ED15B4844BC4C9FB7F21FCD9222536CB2@HHMAIL01.hh.imgtec.org
State New
Headers show

Commit Message

Toma Tabacu Dec. 8, 2016, 3:41 p.m. UTC
Hi,

The msa-builtins-err.c test is failing in the following configuration:
-O2 -flto -fuse-linker-plugin -fno-fat-lto-objects
This is because the errors it is checking for are triggered by assembly
generation, which is prevented by -fno-fat-lto-objects.

This patch fixes this by adding a dg-skip-if for -fno-fat-lto-objects.

Tested with mips-mti-elf.

Regards,
Toma Tabacu

gcc/testsuite/ChangeLog:

	* gcc.target/mips/msa-builtins-err.c (dg-skip-if): Do not run the test
	if -fno-fat-lto-objects is present.

Comments

Matthew Fortune Dec. 9, 2016, 9:58 a.m. UTC | #1
Toma Tabacu <Toma.Tabacu@imgtec.com> writes:
> The msa-builtins-err.c test is failing in the following configuration:
> -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects
> This is because the errors it is checking for are triggered by assembly
> generation, which is prevented by -fno-fat-lto-objects.
> 
> This patch fixes this by adding a dg-skip-if for -fno-fat-lto-objects.
> 
> Tested with mips-mti-elf.
> 
> Regards,
> Toma Tabacu
> 
> gcc/testsuite/ChangeLog:
> 
> 	* gcc.target/mips/msa-builtins-err.c (dg-skip-if): Do not run the test
> 	if -fno-fat-lto-objects is present.

You don't need the (dg-skip-if) here, no specific reason but people
don't tend to do it.

It's a shame this is the only way to deal with this but I see aarch64 have
to resort to the same thing for error checking tests.

Thanks for the fix, OK to commit.

Matthew
diff mbox

Patch

diff --git a/gcc/testsuite/gcc.target/mips/msa-builtins-err.c b/gcc/testsuite/gcc.target/mips/msa-builtins-err.c
index 041b7f5..57acee0 100644
--- a/gcc/testsuite/gcc.target/mips/msa-builtins-err.c
+++ b/gcc/testsuite/gcc.target/mips/msa-builtins-err.c
@@ -1,6 +1,7 @@ 
 /* Test builtins for MIPS MSA ASE instructions */
 /* { dg-do compile } */
 /* { dg-options "-mfp64 -mhard-float -mmsa" } */
+/* { dg-skip-if "needs asm output" { *-*-* } { "-fno-fat-lto-objects" } { "" } } */
 
 #include <msa.h>