From patchwork Thu Feb 26 21:10:43 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom de Vries X-Patchwork-Id: 444068 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org 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 92252140111 for ; Fri, 27 Feb 2015 08:10:59 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=pass reason="1024-bit key; unprotected key" header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b=btmtsIvt; dkim-adsp=none (unprotected policy); dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :message-id:date:from:mime-version:to:cc:subject:content-type; q=dns; s=default; b=TC4VjLU9a2SIsDp29P99Kw7ImHdBnoIF3XNx7VztJDi X7BsHzj9KAtkmgMeov8VYaJ3VWeKTUH2Ym14gj5ZByVPBfNA4pFaHVAB91ELZOe9 j5jqkKVrCGjRQctnTi+y+OgFrJsI2ODW6ReqJ8+07R/bZSDIMr4rTIQC2Bb3LJxU = 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 :message-id:date:from:mime-version:to:cc:subject:content-type; s=default; bh=WsQZDyyHjchYwjT1yH7ma8yxLJg=; b=btmtsIvtpsjepGe7k QExRYYR1rTIAPuHCM3ZUyyQSb6ECkekgUiAIY4QkIWJkQv/oDQOfW8pUa1n62/uJ FgFs4ufiyGozlp28o+FA/V/6OWllczkrkZFJhBvj6LrkWVulsXQucz+M/C/DUg07 uCernmwMfH3LhfQQnpKPGto1ps= Received: (qmail 58012 invoked by alias); 26 Feb 2015 21:10:52 -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 57988 invoked by uid 89); 26 Feb 2015 21:10:51 -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 21:10:50 +0000 Received: from nat-ies.mentorg.com ([192.94.31.2] helo=SVR-IES-FEM-03.mgc.mentorg.com) by relay1.mentorg.com with esmtp id 1YR5hm-0004F3-SN from Tom_deVries@mentor.com ; Thu, 26 Feb 2015 13:10:47 -0800 Received: from [127.0.0.1] (137.202.0.76) by SVR-IES-FEM-03.mgc.mentorg.com (137.202.0.108) with Microsoft SMTP Server id 14.3.224.2; Thu, 26 Feb 2015 21:10:45 +0000 Message-ID: <54EF8BD3.30505@mentor.com> Date: Thu, 26 Feb 2015 22:10:43 +0100 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: Ian Lance Taylor CC: GCC Patches Subject: [committed] Add missing cleanup in go-gc-tests for cmpout Hi, This patch gets rid of these non-interesting .exe files: ... gcc/testsuite/go: bug206.exe bug409.exe deferprint.exe go.log.sep go.sum helloworld.exe printbig.exe site.exp bug328.exe cplx0.exe go.log goprint.exe go.sum.sep issue6899.exe sigchld.exe string.exe gcc/testsuite/go1: bug206.exe bug328.exe go.log.sep goprint.exe go.sum.sep helloworld.exe issue6899.exe sigchld.exe site.exp ... Committed as obvious. Thanks, - Tom 2015-02-26 Tom de Vries * go.test/go-test.exp (go-gc-tests): Add missing cleanup for cmpout. diff --git a/gcc/testsuite/go.test/go-test.exp b/gcc/testsuite/go.test/go-test.exp index bf5941d..50b2b5e 100644 --- a/gcc/testsuite/go.test/go-test.exp +++ b/gcc/testsuite/go.test/go-test.exp @@ -614,6 +614,7 @@ proc go-gc-tests { } { pass "$name execution" regsub "\\.go$" $test ".out" expect filecmp $expect $base.p "$name compare" + file delete $output_file } file delete $base.p } else { -- 1.9.1