From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pl1-x62f.google.com (mail-pl1-x62f.google.com [IPv6:2607:f8b0:4864:20::62f]) by sourceware.org (Postfix) with ESMTPS id A067C385800D for ; Sun, 19 Sep 2021 14:46:48 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org A067C385800D Received: by mail-pl1-x62f.google.com with SMTP id bg1so9326012plb.13 for ; Sun, 19 Sep 2021 07:46:48 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:subject:to:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-transfer-encoding :content-language; bh=jT6CBy0PCS1c7lOiZC1+cxlLMw2bf+bb6mUpG7ex4Uw=; b=3AJG8FProD8/qBuS2z8XM94mLwSzT2nnUvBw7W7golYWDVF0U+l3iTNmhtqM4xP0IO wOqV6WT4M6iWJEkGB9DExpQ9dqIEd5EXcPDePmVGsshdf5x2axFXhcGakvX2nZqV7ECd pzu8BVz0OeNhlkB8XkNppsTEk2JhY82Mqx5Bw+HdVSf4rNgx7e95krDNfAdZQW/asyRp HQOT6+vq8vXQB8H4N2JvIZl42RurpiEb+3vSE3/TL1Lqbrm4B3NPYANulgU1WdS5Kq4r o4EcfVrF1DlwNcvuvZ68gdn8kxT0Vzl/TA3Tia6ra4iYCxSH1Lv49nPsx9Kc0GP4cub0 NXUw== X-Gm-Message-State: AOAM531g28p28IF2anb5sI15E2eFpQ9Lvw4B7IwOWalPWVHg/oZuKEsJ Zdhi+RwVthalbrsrgGdWSM1YqWVdgO0= X-Google-Smtp-Source: ABdhPJzLi9BrRW0nFe4IDVrG8Xvpbe6CJxdkeI4npHMsVbrd5SFjN+18J0xZ4A/G9c5KWTd2/ETS+g== X-Received: by 2002:a17:90b:2245:: with SMTP id hk5mr33421664pjb.115.1632062807257; Sun, 19 Sep 2021 07:46:47 -0700 (PDT) Received: from [172.31.0.175] (c-98-202-48-222.hsd1.ut.comcast.net. [98.202.48.222]) by smtp.gmail.com with ESMTPSA id u10sm11680239pfn.147.2021.09.19.07.46.46 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Sun, 19 Sep 2021 07:46:46 -0700 (PDT) Subject: Re: [PATCH] testsuite: Remove .exe suffix in prune_gcc_output To: Christophe Lyon , gcc-patches@gcc.gnu.org References: <20210908084956.1444294-1-christophe.lyon@foss.st.com> From: Jeff Law Message-ID: <2f90c1c1-4d44-cde4-0b7b-a53b78b3e193@gmail.com> Date: Sun, 19 Sep 2021 08:46:45 -0600 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Thunderbird/78.14.0 MIME-Version: 1.0 In-Reply-To: <20210908084956.1444294-1-christophe.lyon@foss.st.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Content-Language: en-US X-Spam-Status: No, score=-2.5 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, NICE_REPLY_A, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Sep 2021 14:46:49 -0000 On 9/8/2021 2:49 AM, Christophe Lyon via Gcc-patches wrote: > When running the testsuite under Windows, we noticed failures in > testcase which attempt to match compiler error messages containing the > name of the executable. > > For instance, gcc.dg/analyzer/signal-4a.c tries to match 'cc1:' which > obviously fails when the executable is called cc1.exe. > > This patch removes the .exe suffix from various toolchain executables > to avoid this problem. > > 2021-09-08 Christophe Lyon > Torbjörn SVENSSON > > gcc/testsuite/ > * lib/prune.exp (prune_gcc_output): Remove .exe suffix from > toolchain executables names. OK jeff