From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 33482 invoked by alias); 6 Apr 2016 15:28:51 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 33471 invoked by uid 89); 6 Apr 2016 15:28:51 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=0.2 required=5.0 tests=AWL,BAYES_05,KAM_LAZY_DOMAIN_SECURITY,RCVD_IN_DNSWL_NONE autolearn=no version=3.3.2 spammy=sk:ebotcaz, D*adacore.com, U*ebotcazou, ebotcazouadacorecom X-HELO: smtp.eu.adacore.com Received: from mel.act-europe.fr (HELO smtp.eu.adacore.com) (194.98.77.210) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Wed, 06 Apr 2016 15:28:40 +0000 Received: from localhost (localhost [127.0.0.1]) by filtered-smtp.eu.adacore.com (Postfix) with ESMTP id 3445D812FA for ; Wed, 6 Apr 2016 17:28:38 +0200 (CEST) Received: from smtp.eu.adacore.com ([127.0.0.1]) by localhost (smtp.eu.adacore.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id opqivFe6D1Gu for ; Wed, 6 Apr 2016 17:28:38 +0200 (CEST) Received: from polaris.localnet (bon31-6-88-161-99-133.fbx.proxad.net [88.161.99.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.eu.adacore.com (Postfix) with ESMTPSA id 10E40812EF for ; Wed, 6 Apr 2016 17:28:38 +0200 (CEST) From: Eric Botcazou To: gcc-patches@gcc.gnu.org Subject: [testsuite] Skip gcc.c-torture/execute/20101011-1.c on Visium Date: Wed, 06 Apr 2016 15:28:00 -0000 Message-ID: <2312213.9QKMtAhDdz@polaris> User-Agent: KMail/4.14.9 (Linux/3.16.7-35-desktop; KDE/4.14.9; x86_64; ; ) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="nextPart5429503.4V50h8Ujx2" Content-Transfer-Encoding: 7Bit X-SW-Source: 2016-04/txt/msg00310.txt.bz2 This is a multi-part message in MIME format. --nextPart5429503.4V50h8Ujx2 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Content-length: 356 I don't understand how this one slipped through the cracks last year, but the test needs to be disabled on Visium as on a bunch of other architectures. Tested on visium-elf, applied on the mainline and 5 branch. 2016-04-06 Eric Botcazou * gcc.c-torture/execute/20101011-1.c (__VISIUM__): Set DO_TEST to 0. -- Eric Botcazou --nextPart5429503.4V50h8Ujx2 Content-Disposition: attachment; filename="p.diff" Content-Transfer-Encoding: 7Bit Content-Type: text/x-patch; charset="UTF-8"; name="p.diff" Content-length: 659 diff --git a/gcc/testsuite/gcc.c-torture/execute/20101011-1.c b/gcc/testsuite/gcc.c-torture/execute/20101011-1.c index e7157c5..744763f 100644 --- a/gcc/testsuite/gcc.c-torture/execute/20101011-1.c +++ b/gcc/testsuite/gcc.c-torture/execute/20101011-1.c @@ -30,6 +30,9 @@ #elif defined (__TMS320C6X__) /* On TI C6X division by zero does not trap. */ # define DO_TEST 0 +#elif defined (__VISIUM__) + /* On Visium division by zero does not trap. */ +# define DO_TEST 0 #elif defined (__mips__) && !defined(__linux__) /* MIPS divisions do trap by default, but libgloss targets do not intercept the trap and raise a SIGFPE. The same is probably --nextPart5429503.4V50h8Ujx2--