From patchwork Thu Oct 15 08:38:16 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom de Vries X-Patchwork-Id: 1382498 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=gcc.gnu.org (client-ip=2620:52:3:1:0:246e:9693:128c; helo=sourceware.org; envelope-from=gcc-patches-bounces@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=suse.de Received: from sourceware.org (server2.sourceware.org [IPv6:2620:52:3:1:0:246e:9693:128c]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4CBjNc7055z9sTK for ; Thu, 15 Oct 2020 19:38:23 +1100 (AEDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 08CB23945C2F; Thu, 15 Oct 2020 08:38:21 +0000 (GMT) X-Original-To: gcc-patches@gcc.gnu.org Delivered-To: gcc-patches@gcc.gnu.org Received: from mx2.suse.de (mx2.suse.de [195.135.220.15]) by sourceware.org (Postfix) with ESMTPS id 96AF539450FF for ; Thu, 15 Oct 2020 08:38:18 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 96AF539450FF Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=suse.de Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=tdevries@suse.de X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.221.27]) by mx2.suse.de (Postfix) with ESMTP id AE6DAADA8 for ; Thu, 15 Oct 2020 08:38:17 +0000 (UTC) Date: Thu, 15 Oct 2020 10:38:16 +0200 From: Tom de Vries To: gcc-patches@gcc.gnu.org Subject: [committed][nvptx, testsuite] Remove xpassing xfails for ptxas crashes Message-ID: <20201015083814.GA17706@delia> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.10.1 (2018-07-13) X-Spam-Status: No, score=-11.8 required=5.0 tests=BAYES_00, GIT_PATCH_0, KAM_DMARC_STATUS, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: gcc-patches-bounces@gcc.gnu.org Sender: "Gcc-patches" Hi, There's a couple of nvptx xfails that are related to ptxas crashes, which are xpassing for me (with ptxas from cuda 9.1). I've tested these on a range of cudas, from 5.0 to 11.1 and did not manage to reproduce the fails. Remove the xfails. Tested on nvptx. Committed to trunk. Thanks, - Tom [nvptx, testsuite] Remove xpassing xfails for ptxas crashes gcc/testsuite/ChangeLog: 2020-10-15 Tom de Vries * gcc.c-torture/compile/pr42717.c: Remove nvptx xfail. * gcc.c-torture/compile/pr61684.c: Same. * gcc.c-torture/execute/pr20601-1.c: Same. * gcc.c-torture/execute/pr52129.c: Same. * gcc.c-torture/execute/pr59221.c: Same. * gcc.dg/pr68671.c: Same. --- gcc/testsuite/gcc.c-torture/compile/pr42717.c | 1 - gcc/testsuite/gcc.c-torture/compile/pr61684.c | 1 - gcc/testsuite/gcc.c-torture/execute/pr20601-1.c | 1 - gcc/testsuite/gcc.c-torture/execute/pr52129.c | 1 - gcc/testsuite/gcc.c-torture/execute/pr59221.c | 1 - gcc/testsuite/gcc.dg/pr68671.c | 1 - 6 files changed, 6 deletions(-) diff --git a/gcc/testsuite/gcc.c-torture/compile/pr42717.c b/gcc/testsuite/gcc.c-torture/compile/pr42717.c index 7f6fb9db5cf..4fe6f93e797 100644 --- a/gcc/testsuite/gcc.c-torture/compile/pr42717.c +++ b/gcc/testsuite/gcc.c-torture/compile/pr42717.c @@ -1,4 +1,3 @@ -/* { dg-xfail-if "ptxas crashes" { nvptx-*-* } { "-O0" } { "" } } */ static signed char foo (signed char si1, unsigned char si2) { diff --git a/gcc/testsuite/gcc.c-torture/compile/pr61684.c b/gcc/testsuite/gcc.c-torture/compile/pr61684.c index 9a7b52feb9e..f5b53b73a0d 100644 --- a/gcc/testsuite/gcc.c-torture/compile/pr61684.c +++ b/gcc/testsuite/gcc.c-torture/compile/pr61684.c @@ -1,5 +1,4 @@ /* PR tree-optimization/61684 */ -/* { dg-xfail-if "ptxas crashes" { nvptx-*-* } { "*" } { "-O0" "-O1" "-Os" } } */ int a, c; static int *b = 0; diff --git a/gcc/testsuite/gcc.c-torture/execute/pr20601-1.c b/gcc/testsuite/gcc.c-torture/execute/pr20601-1.c index 6eab1ef1ea7..7c13c913819 100644 --- a/gcc/testsuite/gcc.c-torture/execute/pr20601-1.c +++ b/gcc/testsuite/gcc.c-torture/execute/pr20601-1.c @@ -1,5 +1,4 @@ /* PR tree-optimization/20601 */ -/* { dg-xfail-if "ptxas crashes" { nvptx-*-* } { "-O1" } { "" } } */ extern void abort (void); extern void exit (int); diff --git a/gcc/testsuite/gcc.c-torture/execute/pr52129.c b/gcc/testsuite/gcc.c-torture/execute/pr52129.c index ab43ca60cfe..a60bfa8bb6a 100644 --- a/gcc/testsuite/gcc.c-torture/execute/pr52129.c +++ b/gcc/testsuite/gcc.c-torture/execute/pr52129.c @@ -1,5 +1,4 @@ /* PR target/52129 */ -/* { dg-xfail-if "ptxas crashes" { nvptx-*-* } { "-O1" } { "" } } */ extern void abort (void); struct S { void *p; unsigned int q; }; diff --git a/gcc/testsuite/gcc.c-torture/execute/pr59221.c b/gcc/testsuite/gcc.c-torture/execute/pr59221.c index b3072271bfb..0cd425948fc 100644 --- a/gcc/testsuite/gcc.c-torture/execute/pr59221.c +++ b/gcc/testsuite/gcc.c-torture/execute/pr59221.c @@ -1,4 +1,3 @@ -/* { dg-xfail-if "ptxas crashes" { nvptx-*-* } { "*" } { "-O0" "-Os" } } */ int a = 1, b, d; diff --git a/gcc/testsuite/gcc.dg/pr68671.c b/gcc/testsuite/gcc.dg/pr68671.c index 9b473ca8f00..bec4639f80a 100644 --- a/gcc/testsuite/gcc.dg/pr68671.c +++ b/gcc/testsuite/gcc.dg/pr68671.c @@ -1,7 +1,6 @@ /* PR tree-optimization/68671 */ /* { dg-do run } */ /* { dg-options " -O2 -fno-tree-dce" } */ -/* { dg-xfail-if "ptxas crashes" { nvptx-*-* } } */ volatile int a = -1; volatile int b;