public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Bernd Schmidt <bernds@codesourcery.com>
To: GCC Patches <gcc-patches@gcc.gnu.org>
Subject: [4/6] nvptx testsuite patches: xfails and skips
Date: Tue, 21 Oct 2014 14:22:00 -0000	[thread overview]
Message-ID: <54466B82.2030709@codesourcery.com> (raw)
In-Reply-To: <5446694A.1010705@codesourcery.com>

[-- Attachment #1: Type: text/plain, Size: 184 bytes --]

Some things don't fit into nice categories that apply to a larger set of 
tests, or which are somewhat random like ptxas tool failures. For these 
I've added xfails and skips.


Bernd

[-- Attachment #2: ts-xfails.diff --]
[-- Type: text/x-patch, Size: 14024 bytes --]


	gcc/testsuite/
	* lib/target-supports.exp (check_effective_target_trampolines,
	check_profiling_available, check_effective_target_lto,
	check_effective_target_vect_natural): False for nvptx-*-*.
	* gcc.c-torture/compile/limits-fndefn.c: Skip for nvptx-*-*.
	* gcc.c-torture/compile/pr34334.c: Likewise.
	* gcc.c-torture/compile/pr37056.c: Likewise.
	* gcc.c-torture/compile/pr39423-1.c: Likewise.
	* gcc.c-torture/compile/pr46534.c: Likewise.
	* gcc.c-torture/compile/pr49049.c: Likewise.
	* gcc.c-torture/compile/pr59417.c: Likewise.
	* gcc.c-torture/compile/20080721-1.c: Likewise.
	* gcc.c-torture/compile/920501-4.c: Likewise.
	* gcc.c-torture/compile/921011-1.c: Likewise.	
	* gcc.dg/20040813-1.c: Likewise.
	* gcc.dg/pr28755.c: Likewise.
	* gcc.dg/pr44194-1.c: Likewise.
	* gcc.c-torture/compile/pr42717.c: Xfail for nvptx-*-*.
	* gcc.c-torture/compile/pr61684.c: Likewise.
	* gcc.c-torture/compile/pr20601-1.c: Likewise.
	* gcc.c-torture/compile/pr59221.c: Likewise.
	* gcc.c-torture/compile/20060208-1.c: Likewise.
	* gcc.c-torture/execute/pr52129.c: Likewise.
	* gcc.c-torture/execute/20020310-1.c: Likewise.
	* gcc.c-torture/execute/20101011-1.c: Define DO_TEST to 0 for nvptx.
	* gcc.c-torture/execute20020312-2.c: Add case for for nvptx.
	* gcc.c-torture/compile/pr60655-1.c: Don't add -fdata-sections
	for nvptx-*-*.
	* gcc.dg/pr36400.c: Xfail scan-assembler test on nvptx-*-*.
	* gcc.dg/const-elim-2.c: Likewise.

------------------------------------------------------------------------
Index: gcc/testsuite/lib/target-supports.exp
===================================================================
--- gcc/testsuite/lib/target-supports.exp.orig
+++ gcc/testsuite/lib/target-supports.exp
@@ -436,6 +436,7 @@ proc check_effective_target_trampolines
     }
     if { [istarget avr-*-*]
 	 || [istarget msp430-*-*]
+	 || [istarget nvptx-*-*]
 	 || [istarget hppa2.0w-hp-hpux11.23]
 	 || [istarget hppa64-hp-hpux11.23] } {
 	return 0;
@@ -532,6 +533,7 @@ proc check_profiling_available { test_wh
 	     || [istarget msp430-*-*]
 	     || [istarget nds32*-*-elf]
 	     || [istarget nios2-*-elf]
+	     || [istarget nvptx-*-*]
 	     || [istarget powerpc-*-eabi*]
 	     || [istarget powerpc-*-elf]
 	     || [istarget rx-*-*]	
@@ -4216,7 +4218,8 @@ proc check_effective_target_vect_natural
         verbose "check_effective_target_vect_natural_alignment: using cached result" 2
     } else {
         set et_vect_natural_alignment_saved 1
-        if { [check_effective_target_arm_eabi] } {
+        if { [check_effective_target_arm_eabi]
+	     || [istarget nvptx-*-*] } {
             set et_vect_natural_alignment_saved 0
         }
     }
@@ -5691,6 +5694,9 @@ proc check_effective_target_gld { } {
 
 proc check_effective_target_lto { } {
     global ENABLE_LTO
+    if { [istarget nvptx-*-*] } {
+	return 0;
+    }
     return [info exists ENABLE_LTO]
 }
 
Index: gcc/testsuite/gcc.c-torture/compile/limits-fndefn.c
===================================================================
--- gcc/testsuite/gcc.c-torture/compile/limits-fndefn.c.orig
+++ gcc/testsuite/gcc.c-torture/compile/limits-fndefn.c
@@ -1,4 +1,5 @@
 /* { dg-skip-if "too complex for avr" { avr-*-* } { "*" } { "" } } */
+/* { dg-skip-if "ptxas times out" { nvptx-*-* } { "*" } { "" } } */
 /* { dg-timeout-factor 4.0 } */
 #define LIM1(x) x##0, x##1, x##2, x##3, x##4, x##5, x##6, x##7, x##8, x##9,
 #define LIM2(x) LIM1(x##0) LIM1(x##1) LIM1(x##2) LIM1(x##3) LIM1(x##4) \
Index: gcc/testsuite/gcc.c-torture/compile/pr60655-1.c
===================================================================
--- gcc/testsuite/gcc.c-torture/compile/pr60655-1.c.orig
+++ gcc/testsuite/gcc.c-torture/compile/pr60655-1.c
@@ -1,4 +1,4 @@
-/* { dg-options "-fdata-sections" { target { ! { { hppa*-*-hpux* } && { ! lp64 } } } } } */
+/* { dg-options "-fdata-sections" { target { { ! { { hppa*-*-hpux* } && { ! lp64 } } } && { ! nvptx-*-* } } } } */
 
 typedef unsigned char unit;
 typedef unit *unitptr;
Index: gcc/testsuite/gcc.c-torture/compile/pr34334.c
===================================================================
--- gcc/testsuite/gcc.c-torture/compile/pr34334.c.orig
+++ gcc/testsuite/gcc.c-torture/compile/pr34334.c
@@ -1,3 +1,4 @@
+/* { dg-skip-if "ptxas times out" { nvptx-*-* } { "*" } { "-O0" } } */
 __extension__ typedef __SIZE_TYPE__ size_t;
 __extension__ typedef long long int __quad_t;
 __extension__ typedef unsigned int __mode_t;
Index: gcc/testsuite/gcc.c-torture/compile/pr37056.c
===================================================================
--- gcc/testsuite/gcc.c-torture/compile/pr37056.c.orig
+++ gcc/testsuite/gcc.c-torture/compile/pr37056.c
@@ -1,3 +1,4 @@
+/* { dg-skip-if "ptxas times out" { nvptx-*-* } { "-O2" "-Os" } { "" } } */
 extern void abort (void);
 
 static union {
Index: gcc/testsuite/gcc.c-torture/compile/pr39423-1.c
===================================================================
--- gcc/testsuite/gcc.c-torture/compile/pr39423-1.c.orig
+++ gcc/testsuite/gcc.c-torture/compile/pr39423-1.c
@@ -1,4 +1,5 @@
 /* PR target/39423 */
+/* { dg-skip-if "ptxas times out" { nvptx-*-* } { "-O2" } { "" } } */
 
 int
 foo (const char *name, int nmlen, char *flags)
Index: gcc/testsuite/gcc.c-torture/compile/pr42717.c
===================================================================
--- gcc/testsuite/gcc.c-torture/compile/pr42717.c.orig
+++ gcc/testsuite/gcc.c-torture/compile/pr42717.c
@@ -1,3 +1,4 @@
+/* { dg-xfail-if "ptxas crashes" { nvptx-*-* } { "-O0" } { "" } } */
 static signed char
 foo (signed char si1, unsigned char si2)
 {
Index: gcc/testsuite/gcc.c-torture/compile/pr46534.c
===================================================================
--- gcc/testsuite/gcc.c-torture/compile/pr46534.c.orig
+++ gcc/testsuite/gcc.c-torture/compile/pr46534.c
@@ -1,4 +1,4 @@
-/* { dg-skip-if "too big" { avr-*-* pdp11-*-* } { "*" } { "" } } */
+/* { dg-skip-if "too big" { avr-*-* nvptx-*-* pdp11-*-* } { "*" } { "" } } */
 /* PR middle-end/46534 */
 
 extern int printf (const char *, ...);
Index: gcc/testsuite/gcc.c-torture/compile/pr49049.c
===================================================================
--- gcc/testsuite/gcc.c-torture/compile/pr49049.c.orig
+++ gcc/testsuite/gcc.c-torture/compile/pr49049.c
@@ -1,3 +1,5 @@
+/* { dg-skip-if "ptxas times out" { nvptx-*-* } { "-Os" } { "" } } */
+
 __extension__ typedef unsigned long long int uint64_t;
 
 static int
Index: gcc/testsuite/gcc.c-torture/compile/pr59417.c
===================================================================
--- gcc/testsuite/gcc.c-torture/compile/pr59417.c.orig
+++ gcc/testsuite/gcc.c-torture/compile/pr59417.c
@@ -1,4 +1,5 @@
 /* PR tree-optimization/59417 */
+/* { dg-skip-if "ptxas times out" { nvptx-*-* } { "-O1" "-O2" "-Os" } { "" } } */
 
 int a, b, d;
 short c;
Index: gcc/testsuite/gcc.c-torture/compile/pr61684.c
===================================================================
--- gcc/testsuite/gcc.c-torture/compile/pr61684.c.orig
+++ gcc/testsuite/gcc.c-torture/compile/pr61684.c
@@ -1,4 +1,5 @@
 /* PR tree-optimization/61684 */
+/* { dg-xfail-if "ptxas crashes" { nvptx-*-* } { "*" } { "-O0" "-O1" "-Os" } } */
 
 int a, c;
 static int *b = 0;
Index: gcc/testsuite/gcc.c-torture/execute/pr20601-1.c
===================================================================
--- gcc/testsuite/gcc.c-torture/execute/pr20601-1.c.orig
+++ gcc/testsuite/gcc.c-torture/execute/pr20601-1.c
@@ -1,4 +1,5 @@
 /* PR tree-optimization/20601 */
+/* { dg-xfail-if "ptxas crashes" { nvptx-*-* } { "-O1" } { "" } } */
 extern void abort (void);
 extern void exit (int);
 
Index: gcc/testsuite/gcc.c-torture/execute/pr59221.c
===================================================================
--- gcc/testsuite/gcc.c-torture/execute/pr59221.c.orig
+++ gcc/testsuite/gcc.c-torture/execute/pr59221.c
@@ -1,3 +1,4 @@
+/* { dg-xfail-if "ptxas crashes" { nvptx-*-* } { "*" } { "-O0" "-Os" } } */
 
 
 int a = 1, b, d;
Index: gcc/testsuite/gcc.c-torture/compile/20060208-1.c
===================================================================
--- gcc/testsuite/gcc.c-torture/compile/20060208-1.c.orig
+++ gcc/testsuite/gcc.c-torture/compile/20060208-1.c
@@ -1,4 +1,5 @@
 /* PR middle-end/26092 */
+/* { dg-skip-if "can't take address of malloc" { nvptx-*-* } { "*" } { "" } } */
 typedef __SIZE_TYPE__ size_t;
 extern void *malloc (size_t);
 
Index: gcc/testsuite/gcc.c-torture/compile/20080721-1.c
===================================================================
--- gcc/testsuite/gcc.c-torture/compile/20080721-1.c.orig
+++ gcc/testsuite/gcc.c-torture/compile/20080721-1.c
@@ -1,3 +1,4 @@
+/* { dg-skip-if "can't read function data" { nvptx-*-* } { "*" } { "" } } */
 void foo(void);
 void bar(void);
 
Index: gcc/testsuite/gcc.c-torture/compile/920501-4.c
===================================================================
--- gcc/testsuite/gcc.c-torture/compile/920501-4.c.orig
+++ gcc/testsuite/gcc.c-torture/compile/920501-4.c
@@ -1,4 +1,5 @@
 /* { dg-do assemble } */
+/* { dg-skip-if "ptxas times out" { nvptx-*-* } { "-O1" } { "" } } */
 
 foo ()
 {
Index: gcc/testsuite/gcc.c-torture/compile/921011-1.c
===================================================================
--- gcc/testsuite/gcc.c-torture/compile/921011-1.c.orig
+++ gcc/testsuite/gcc.c-torture/compile/921011-1.c
@@ -1,3 +1,5 @@
+/* { dg-skip-if "ptxas times out" { nvptx-*-* } { "-O1" } { "" } } */
+
 void
 fun (nb)
      int nb;
Index: gcc/testsuite/gcc.c-torture/execute/20101011-1.c
===================================================================
--- gcc/testsuite/gcc.c-torture/execute/20101011-1.c.orig
+++ gcc/testsuite/gcc.c-torture/execute/20101011-1.c
@@ -71,6 +71,9 @@ __aeabi_idiv0 (int return_value)
   /* Nios II requires both hardware support and user configuration to
      raise an exception on divide by zero.  */
 # define DO_TEST 0
+#elif defined (__nvptx__)
+/* There isn't even a signal function.  */
+# define DO_TEST 0
 #else
 # define DO_TEST 1
 #endif
Index: gcc/testsuite/gcc.c-torture/execute/pr52129.c
===================================================================
--- gcc/testsuite/gcc.c-torture/execute/pr52129.c.orig
+++ gcc/testsuite/gcc.c-torture/execute/pr52129.c
@@ -1,4 +1,5 @@
 /* PR target/52129 */
+/* { dg-xfail-if "ptxas crashes" { nvptx-*-* } { "-O1" } { "" } } */
 
 extern void abort (void);
 struct S { void *p; unsigned int q; };
Index: gcc/testsuite/gcc.dg/20020310-1.c
===================================================================
--- gcc/testsuite/gcc.dg/20020310-1.c.orig
+++ gcc/testsuite/gcc.dg/20020310-1.c
@@ -3,6 +3,7 @@
 /* { dg-do run } */
 /* { dg-options "-O2" } */
 /* { dg-options "-O2 -mtune=i586" { target { { i?86-*-* x86_64-*-* } && ia32 } } } */
+/* { dg-xfail-if "doesn't support self-referential initializers" { nvptx-*-* } } */
 
 struct A
 {
Index: gcc/testsuite/gcc.dg/20020312-2.c
===================================================================
--- gcc/testsuite/gcc.dg/20020312-2.c.orig
+++ gcc/testsuite/gcc.dg/20020312-2.c
@@ -104,6 +104,8 @@ extern void abort (void);
 /* No pic register.  */
 #elif defined(__MSP430__)
 /* No pic register.  */
+#elif defined (__nvptx__)
+/* No pic register.  */
 #else
 # error "Modify the test for your target."
 #endif
Index: gcc/testsuite/gcc.dg/20040813-1.c
===================================================================
--- gcc/testsuite/gcc.dg/20040813-1.c.orig
+++ gcc/testsuite/gcc.dg/20040813-1.c
@@ -2,7 +2,7 @@
 /* Contributed by Devang Patel  <dpatel@apple.com>  */
 
 /* { dg-do compile } */
-/* { dg-skip-if "No stabs" { aarch64*-*-* mmix-*-* *-*-aix* alpha*-*-* hppa*64*-*-* ia64-*-* tile*-*-* nios2-*-* *-*-vxworks* } { "*" } { "" } } */
+/* { dg-skip-if "No stabs" { aarch64*-*-* mmix-*-* *-*-aix* alpha*-*-* hppa*64*-*-* ia64-*-* tile*-*-* nios2-*-* *-*-vxworks* nvptx-*-* } { "*" } { "" } } */
 /* { dg-options "-gstabs" } */
 
 int
Index: gcc/testsuite/gcc.dg/pr28755.c
===================================================================
--- gcc/testsuite/gcc.dg/pr28755.c.orig
+++ gcc/testsuite/gcc.dg/pr28755.c
@@ -3,6 +3,7 @@
 /* { dg-require-effective-target ptr32plus } */
 /* { dg-options "-Os" } */
 /* { dg-final { scan-assembler-times "2112543726\|7deadbee" 2 } } */
+/* { dg-skip-if "integer output is different here" { nvptx-*-* } } */
 
 struct S
 {
Index: gcc/testsuite/gcc.dg/pr44194-1.c
===================================================================
--- gcc/testsuite/gcc.dg/pr44194-1.c.orig
+++ gcc/testsuite/gcc.dg/pr44194-1.c
@@ -1,4 +1,4 @@
-/* { dg-do compile { target { { { { { { { i?86-*-* x86_64-*-* } && x32 } || lp64 } && { ! s390*-*-* } } && { ! hppa*64*-*-* } } && { ! alpha*-*-* } } && { { ! powerpc*-*-linux* } || powerpc_elfv2 } } } } */
+/* { dg-do compile { target { { { { { { { i?86-*-* x86_64-*-* } && x32 } || lp64 } && { ! s390*-*-* } } && { ! hppa*64*-*-* } } && { ! alpha*-*-* } } && { { ! powerpc*-*-linux* } || powerpc_elfv2 } && { ! nvptx-*-* } } } } */
 /* { dg-options "-O2 -fdump-rtl-dse1 -fdump-rtl-final" } */
 
 /* Restrict to 64-bit targets since 32-bit targets usually return small
Index: gcc/testsuite/gcc.dg/torture/pr36400.c
===================================================================
--- gcc/testsuite/gcc.dg/torture/pr36400.c.orig
+++ gcc/testsuite/gcc.dg/torture/pr36400.c
@@ -14,4 +14,4 @@ void baz()
   barptr->some_string = "Everything OK";
 }
 
-/* { dg-final { scan-assembler "Everything OK" } } */
+/* { dg-final { scan-assembler "Everything OK" { xfail nvptx-*-* } } } */
Index: gcc/testsuite/gcc.dg/const-elim-2.c
===================================================================
--- gcc/testsuite/gcc.dg/const-elim-2.c.orig
+++ gcc/testsuite/gcc.dg/const-elim-2.c
@@ -1,7 +1,7 @@
 /* The string constant in this test case should be emitted exactly once.  */
 /* { dg-do compile } */
 /* { dg-options "-O2" } */
-/* { dg-final { scan-assembler-times "hi there" 1 } } */
+/* { dg-final { scan-assembler-times "hi there" 1 { xfail nvptx-*-* } } } */
 
 static inline int returns_23() { return 23; }
 

  parent reply	other threads:[~2014-10-21 14:21 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-10-21 14:13 [0/6] nvptx testsuite patches Bernd Schmidt
2014-10-21 14:13 ` [1/6] nvptx testsuite patches: alloca Bernd Schmidt
2014-10-21 15:16   ` Jeff Law
2014-10-21 14:19 ` [2/6] nvptx testsuite patches: typed assembly Bernd Schmidt
2014-10-21 15:22   ` Jeff Law
2014-10-21 15:33     ` Bernd Schmidt
2014-11-10 16:23       ` Bernd Schmidt
2014-10-21 14:19 ` [3/6] nvptx testsuite patches: stdio Bernd Schmidt
2014-10-21 15:24   ` Jeff Law
2014-10-21 19:28   ` Mike Stump
2014-10-21 21:11     ` Bernd Schmidt
2014-10-21 14:22 ` Bernd Schmidt [this message]
2014-10-21 15:30   ` [4/6] nvptx testsuite patches: xfails and skips Jeff Law
2014-10-21 15:32     ` Bernd Schmidt
2014-10-21 14:27 ` [5/6] nvptx testsuite patches: jumps and labels Bernd Schmidt
2014-10-21 15:31   ` Jeff Law
2014-10-21 14:30 ` [6/7] Random tweaks Bernd Schmidt
2014-10-21 15:33   ` Jeff Law
2014-10-21 17:04     ` Jakub Jelinek
2014-10-21 17:49       ` Marek Polacek
2014-10-21 20:24         ` Mike Stump
2014-10-21 14:34 ` [7/7] nvptx testsuite patches: Return addresses Bernd Schmidt
2014-10-21 15:34   ` Jeff Law
2014-11-10 20:21     ` H.J. Lu
2014-11-10 20:33       ` Mike Stump
2014-11-11 11:58       ` Bernd Schmidt
2014-10-21 14:48 ` [0/6] nvptx testsuite patches Jeff Law

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=54466B82.2030709@codesourcery.com \
    --to=bernds@codesourcery.com \
    --cc=gcc-patches@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).