From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8592 invoked by alias); 3 May 2019 18:11:09 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 8281 invoked by uid 89); 3 May 2019 18:11:08 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-25.5 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,KAM_SHORT,SPF_PASS autolearn=ham version=3.3.1 spammy=managed 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; Fri, 03 May 2019 18:11:07 +0000 Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 0FA15ADE5; Fri, 3 May 2019 18:11:05 +0000 (UTC) Subject: buildbot config cc-with-index not functional From: Tom de Vries To: gdb-patches@sourceware.org, Sergio Durigan Junior References: <20190503105847.GA9448@delia> Message-ID: <4f515dbf-69ad-1bf0-d16b-f9bc7150e6c8@suse.de> Date: Fri, 03 May 2019 18:11:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.5.1 MIME-Version: 1.0 In-Reply-To: <20190503105847.GA9448@delia> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2019-05/txt/msg00074.txt.bz2 [ was: Re: [committed][gdb/testsuite] Add cc-with-gdb-index.exp ] Hi, I've just added a target board cc-with-gdb-index.exp, to make it easy to test using cc-with-tweaks.sh -i. Then I stumbled upon the build bot config Fedora-x86_64-cc-with-index, and I took a look at the test results. I noticed that a test failing with cc-with-gdb-index.exp, gdb.base/cache-index.exp (see PR24516 - "cc-with-gdb-index failures") is passing in the cc-with-index config. I managed to reproduce that pass using the way the config uses cc-with-tweaks.sh: ... $ make -k check \ 'CC_FOR_TARGET=/bin/sh gdb/contrib/cc-with-tweaks.sh -i gcc' \ 'CXX_FOR_TARGET=/bin/sh gdb/contrib/cc-with-tweaks.sh -i g++' \ -j4 \ FORCE_PARALLEL=1 \ TS=1 ... So, AFAIU, the cc-with-index buildbot config does not actually test using cc-with-tweaks.sh -i, as it intends to. Thanks, - Tom On 03-05-19 12:58, Tom de Vries wrote: > Hi, > > Add a target board cc-with-gdb-index.exp, to make it easy to run cc-with-tweaks > with CC_WITH_TWEAKS_FLAGS='-i'. > > Tested on x86_64-linux. > > Committed to trunk. > > Thanks, > - Tom > > [gdb/testsuite] Add cc-with-gdb-index.exp > > gdb/testsuite/ChangeLog: > > 2019-05-03 Tom de Vries > > * boards/cc-with-gdb-index.exp: New file. > > --- > gdb/testsuite/boards/cc-with-gdb-index.exp | 26 ++++++++++++++++++++++++++ > 1 file changed, 26 insertions(+) > > diff --git a/gdb/testsuite/boards/cc-with-gdb-index.exp b/gdb/testsuite/boards/cc-with-gdb-index.exp > new file mode 100644 > index 0000000000..910e0acca1 > --- /dev/null > +++ b/gdb/testsuite/boards/cc-with-gdb-index.exp > @@ -0,0 +1,26 @@ > +# Copyright 2019 Free Software Foundation, Inc. > + > +# This program is free software; you can redistribute it and/or modify > +# it under the terms of the GNU General Public License as published by > +# the Free Software Foundation; either version 3 of the License, or > +# (at your option) any later version. > +# > +# This program is distributed in the hope that it will be useful, > +# but WITHOUT ANY WARRANTY; without even the implied warranty of > +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > +# GNU General Public License for more details. > +# > +# You should have received a copy of the GNU General Public License > +# along with this program. If not, see . > + > +# This file is a dejagnu "board file" and is used to run the testsuite > +# with contrib/cc-with-tweaks.sh -i. > +# > +# Example usage: > +# bash$ cd $objdir > +# bash$ make check-gdb \ > +# RUNTESTFLAGS='--target_board=cc-with-gdb-index' > +# > + > +set CC_WITH_TWEAKS_FLAGS "-i" > +load_board_description "cc-with-tweaks" >