From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 43357 invoked by alias); 28 Jul 2018 13:46:02 -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 42972 invoked by uid 89); 28 Jul 2018 13:45:44 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-24.2 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3 autolearn=ham version=3.3.2 spammy=HX-Get-Message-Sender-Via:sk:authent X-HELO: eggs.gnu.org Received: from eggs.gnu.org (HELO eggs.gnu.org) (208.118.235.92) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 28 Jul 2018 13:45:42 +0000 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fjPXN-0007AX-Ui for gcc-patches@gcc.gnu.org; Sat, 28 Jul 2018 09:45:39 -0400 Received: from smtp-out1.superhosting.bg ([91.196.127.1]:57273) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fjPXN-00078s-HG for gcc-patches@gcc.gnu.org; Sat, 28 Jul 2018 09:45:37 -0400 Received: from server28.superhosting.bg ([193.107.36.199]) by smtp-out1.superhosting.bg with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1fjPXL-0002pg-M5 for gcc-patches@gcc.gnu.org; Sat, 28 Jul 2018 16:45:35 +0300 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=dinux.eu; s=default; h=References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From: Sender:Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=uLrjdogsviGkQoYZI+0DtJY8yqCcFF/xEaMD46aeXVI=; b=eVc3A0gp+f9RqTOkznAH8yb1l7 B+oMJwL83R497lVUgep2pmRsFhMS3MKiFASwr9v41s8g3uzEEqA13V5qEBQuqaSj0LbmlBfvIa4fz AS+xqP6k+emO81GczrkM3NPuehpMAMGy/t+i+pCH/SwRcfx0RxLPSnBnsgDllCQOu1nqoz+XmrCAQ RrsbfKK+QcObZ+n93rDci77iCYi5Vd4JR4rTditbJDLlCGnEyv9z0zHRVBFqYFFJQjkSakOfXYY+5 WrCRqGYONVkkKgm/GuNAMKoiaajh0FbLCOyeqq3RXGffNmtIyc+FboFgZUrWjL5Ka5kINPEEOW6xo i+GNst5g==; Received: from [95.87.234.74] (port=45394 helo=localhost.localdomain) by server28.superhosting.bg with esmtpsa (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128) (Exim 4.91) (envelope-from ) id 1fjPXJ-0008pE-BB; Sat, 28 Jul 2018 16:45:35 +0300 From: Dimitar Dimitrov To: gcc-patches@gcc.gnu.org Cc: Dimitar Dimitrov Subject: [PATCH v2 06/10] testsuite: Remove PRU from test cases requiring hosted environment Date: Sat, 28 Jul 2018 13:46:00 -0000 Message-Id: <20180728134449.14742-7-dimitar@dinux.eu> In-Reply-To: <20180728134449.14742-1-dimitar@dinux.eu> References: <20180728134449.14742-1-dimitar@dinux.eu> X-OutGoing-Spam-Status: No, score=-1.0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x [fuzzy] X-Received-From: 91.196.127.1 X-IsSubscribed: yes X-SW-Source: 2018-07/txt/msg01784.txt.bz2 gcc/testsuite/ChangeLog: 2018-07-27 Dimitar Dimitrov * gcc.c-torture/execute/20101011-1.c: Define DO_TEST to 0 for PRU. * gcc.dg/20020312-2.c: No PIC register for PRU. Signed-off-by: Dimitar Dimitrov --- gcc/testsuite/gcc.c-torture/execute/20101011-1.c | 3 +++ gcc/testsuite/gcc.dg/20020312-2.c | 2 ++ 2 files changed, 5 insertions(+) diff --git a/gcc/testsuite/gcc.c-torture/execute/20101011-1.c b/gcc/testsuite/gcc.c-torture/execute/20101011-1.c index dda49a59852..7f8d14d617c 100644 --- a/gcc/testsuite/gcc.c-torture/execute/20101011-1.c +++ b/gcc/testsuite/gcc.c-torture/execute/20101011-1.c @@ -93,6 +93,9 @@ __aeabi_idiv0 (int return_value) #elif defined (__nvptx__) /* There isn't even a signal function. */ # define DO_TEST 0 +#elif defined (__pru__) +/* There isn't even a signal function. */ +# define DO_TEST 0 #else # define DO_TEST 1 #endif diff --git a/gcc/testsuite/gcc.dg/20020312-2.c b/gcc/testsuite/gcc.dg/20020312-2.c index f5929e0b057..209ef67e263 100644 --- a/gcc/testsuite/gcc.dg/20020312-2.c +++ b/gcc/testsuite/gcc.dg/20020312-2.c @@ -111,6 +111,8 @@ extern void abort (void); /* No pic register. */ #elif defined (__nvptx__) /* No pic register. */ +#elif defined(__PRU__) +/* No pic register. */ #else # error "Modify the test for your target." #endif -- 2.11.0