From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 53081 invoked by alias); 26 Feb 2015 14:36:30 -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 53063 invoked by uid 89); 26 Feb 2015 14:36:29 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.3 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: relay1.mentorg.com Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 26 Feb 2015 14:36:28 +0000 Received: from nat-ies.mentorg.com ([192.94.31.2] helo=SVR-IES-FEM-02.mgc.mentorg.com) by relay1.mentorg.com with esmtp id 1YQzY8-0007T1-K9 from Tom_deVries@mentor.com for gcc-patches@gcc.gnu.org; Thu, 26 Feb 2015 06:36:24 -0800 Received: from [127.0.0.1] (137.202.0.76) by SVR-IES-FEM-02.mgc.mentorg.com (137.202.0.106) with Microsoft SMTP Server id 14.3.224.2; Thu, 26 Feb 2015 14:36:23 +0000 Message-ID: <54EF2F65.1080207@mentor.com> Date: Thu, 26 Feb 2015 14:53:00 -0000 From: Tom de Vries User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.4.0 MIME-Version: 1.0 To: GCC Patches Subject: [committed] Add missing cleanup in g++.dg/gcov/gcov-14.C Content-Type: multipart/mixed; boundary="------------090207020300090203040104" X-SW-Source: 2015-02/txt/msg01616.txt.bz2 --------------090207020300090203040104 Content-Type: text/plain; charset="utf-8"; format=flowed Content-Transfer-Encoding: 7bit Content-length: 42 Hi, committed as obvious. Thanks, - Tom --------------090207020300090203040104 Content-Type: text/x-patch; name="0001-Add-missing-cleanup-in-g-.dg-gcov-gcov-14.C.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="0001-Add-missing-cleanup-in-g-.dg-gcov-gcov-14.C.patch" Content-length: 786 2015-02-26 Tom de Vries * g++.dg/gcov/gcov-14.C: Add cleanup of iostream.gcov, ostream.gcov and locale_facets.h.gcov. diff --git a/gcc/testsuite/g++.dg/gcov/gcov-14.C b/gcc/testsuite/g++.dg/gcov/gcov-14.C index 8f8e388..b069d0e 100644 --- a/gcc/testsuite/g++.dg/gcov/gcov-14.C +++ b/gcc/testsuite/g++.dg/gcov/gcov-14.C @@ -14,3 +14,8 @@ int main () } /* { dg-final { run-gcov gcov-14.C } } */ +/* run-gcov cleanups up after itself, but doesn't find all created gcov files. + We could try to grep for ^Created in the exec log, but since there's only one + testcase where we create these extra gcov files, do a local cleanup for + now. */ +/* { dg-final { remote_file target delete iostream.gcov ostream.gcov locale_facets.h.gcov } } */ -- 1.9.1 --------------090207020300090203040104--