From patchwork Tue Jul 16 10:20:58 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Martin_Li=C5=A1ka?= X-Patchwork-Id: 1132580 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=gcc.gnu.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=gcc-patches-return-505135-incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=suse.cz Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="WrpDxaFa"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 45nxJ56j2gz9s8m for ; Tue, 16 Jul 2019 20:21:09 +1000 (AEST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :subject:to:message-id:date:mime-version:content-type; q=dns; s= default; b=mhrjCbUTuYFM7lnGZEmUyfR1AtRbSHnAKLxT/kiiGu+E7FRfi8EE1 73OqkxqQvIoBmXRunljiW8EUFJDay2CVRzgsy1VWjXrhU+0Q9mObv8KEm8g9OY4d ivIWzsEjocw0bpL4/Ntos+hC0cIYgY0NHMlPkWgrn+eLZuWr+8S9LU= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :subject:to:message-id:date:mime-version:content-type; s= default; bh=TtMVRKMbfQQGzFxD41wBcv/ODqU=; b=WrpDxaFaAX4zjQnqR2LR qH/5hio8b30KL2VcoBH0R668yywsJ7bq6tz95F40ZX2SafNPiiGyIXqheqymbKnM /4D9oGTWhmAwfg3Miy6WUQgtU2YpfH8ruHY8qXDW4I0s33bV43JTSs9Jn984VSrH ExrnHhU230SCqqnRn6cKj8s= Received: (qmail 14711 invoked by alias); 16 Jul 2019 10:21:02 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 14701 invoked by uid 89); 16 Jul 2019 10:21:02 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-17.2 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, SPF_PASS autolearn=ham version=3.3.1 spammy=fallout X-HELO: mx1.suse.de Received: from mx2.suse.de (HELO mx1.suse.de) (195.135.220.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 16 Jul 2019 10:21:01 +0000 Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 3AFE6ACE1 for ; Tue, 16 Jul 2019 10:20:59 +0000 (UTC) From: =?utf-8?q?Martin_Li=C5=A1ka?= Subject: [PATCH][OBVIOUS][GCC9] Do not use -Werror in a test that has -frepo warning (PR testsuite/91175). To: gcc-patches@gcc.gnu.org Message-ID: <3b726616-7205-48f1-b8f9-0449b58597fd@suse.cz> Date: Tue, 16 Jul 2019 12:20:58 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.7.2 MIME-Version: 1.0 X-IsSubscribed: yes Hi. This is fix of the fallout caused by the warning for -frepo. I've just tested the test locally and I'm going to install the patch. Thanks, Martin gcc/testsuite/ChangeLog: 2019-07-16 Martin Liska PR testsuite/91175 * g++.old-deja/g++.pt/instantiate4.C: Do not use -Werror. --- gcc/testsuite/g++.old-deja/g++.pt/instantiate4.C | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/testsuite/g++.old-deja/g++.pt/instantiate4.C b/gcc/testsuite/g++.old-deja/g++.pt/instantiate4.C index 97838689d38..071a64be441 100644 --- a/gcc/testsuite/g++.old-deja/g++.pt/instantiate4.C +++ b/gcc/testsuite/g++.old-deja/g++.pt/instantiate4.C @@ -1,8 +1,8 @@ // { dg-do link } -// { dg-options "-frepo -Werror" } +// { dg-options "-frepo" } // { dg-require-host-local "" } // { dg-skip-if "dkms are not final links" { vxworks_kernel } } -// { dg-error "is deprecated and will be removed in a future release" "" { target *-*-* } 0 } +// { dg-warning "is deprecated and will be removed in a future release" "" { target *-*-* } 0 } // Submitted by Melissa O'Neill