From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 43646 invoked by alias); 22 Oct 2018 10:10:10 -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 43605 invoked by uid 89); 22 Oct 2018 10:10:08 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-11.9 required=5.0 tests=BAYES_00,GIT_PATCH_2,GIT_PATCH_3,SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=*C, *c, UD:*.C, *.c X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 22 Oct 2018 10:10:07 +0000 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 0ABB93001DB6; Mon, 22 Oct 2018 10:10:06 +0000 (UTC) Received: from tucnak.zalov.cz (ovpn-117-222.ams2.redhat.com [10.36.117.222]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 8B58D5D9CC; Mon, 22 Oct 2018 10:10:05 +0000 (UTC) Received: from tucnak.zalov.cz (localhost [127.0.0.1]) by tucnak.zalov.cz (8.15.2/8.15.2) with ESMTP id w9MAA0Lm010028; Mon, 22 Oct 2018 12:10:01 +0200 Received: (from jakub@localhost) by tucnak.zalov.cz (8.15.2/8.15.2/Submit) id w9MA9uVZ010027; Mon, 22 Oct 2018 12:09:56 +0200 Date: Mon, 22 Oct 2018 10:31:00 -0000 From: Jakub Jelinek To: Martin =?utf-8?B?TGnFoWth?= Cc: Rainer Orth , Uros Bizjak , Richard Earnshaw , Richard Guenther , renlin.li@foss.arm.com, "gcc-patches@gcc.gnu.org" Subject: Re: [PATCH] Come up with gcc/testsuite/g++.target/i386/i386.dg and move there some tests. Message-ID: <20181022100956.GA11625@tucnak> Reply-To: Jakub Jelinek References: <0383b55e-4108-4e9f-dfbc-eca831b9e1b9@suse.cz> <20181008112152.GG11625@tucnak> <01e76da0-6e9e-c8f4-4579-60a349e6e8f9@suse.cz> <64ea102f-2686-3a45-30e9-81acf4097de4@suse.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.9.2 (2017-12-15) X-IsSubscribed: yes X-SW-Source: 2018-10/txt/msg01310.txt.bz2 On Mon, Oct 22, 2018 at 12:04:23PM +0200, Martin Liška wrote: > > I noticed that before the tests were run with all of > > -std=(c|gnu)++(98|11|14), now with no explict -std option. I wonder if > > this is an issue. > > > > Rainer > > > > Hello. > > I guess that should not be a problem. If we want that, it is a matter of (untested): --- gcc/testsuite/g++.target/i386/i386.exp.jj 2018-10-10 10:50:48.352235231 +0200 +++ gcc/testsuite/g++.target/i386/i386.exp 2018-10-22 12:08:56.546807996 +0200 @@ -35,8 +35,8 @@ dg-init clearcap-init # Main loop. -dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/*.C]] \ - "" $DEFAULT_CXXFLAGS +g++-dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/*.C]] \ + "" $DEFAULT_CXXFLAGS # All done. clearcap-finish Jakub