From patchwork Wed Feb 18 21:03:45 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: 441147 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 D974E14007F for ; Thu, 19 Feb 2015 08:04:14 +1100 (AEDT) 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:subject:content-type; q= dns; s=default; b=xrWp/3GK92aX01PliISVee+eM3RnXKEnDjc/oSrC3K3pcf dlgEHO/u8ylsvO0a/R5BO1IxxcAdg2zV1aOjvqjo2umgI5wynJMo4Rr1idxpH3QV RR3L441bgWuywOlrDS+f44Bm8GKm8WiMrEs1iQEcaRvTdjxB/udyYhXbWG0K8= 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:subject:content-type; s= default; bh=9G8SB84skg7LZHlC4ISoQUxIjOw=; b=bK+TZDr5oZ+JdvPdBvW6 1Q84D9cYsFYE5kkwJWGuE85g1nsoalK3YACzVbureCv02m2VlmfqI/vgq5perJJ7 UJaSUosK0W5jj6A9CbLzNRgWQgVNI6FlLR1JRAsvGPvu/mhZ+BifTPR9c0Zvi7ra KELmXsz65IrPRjBZb+YG4e0= Received: (qmail 31590 invoked by alias); 18 Feb 2015 21:03:55 -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 31572 invoked by uid 89); 18 Feb 2015 21:03:54 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.2 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-Spam-User: qpsmtpd, 2 recipients 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; Wed, 18 Feb 2015 21:03:53 +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 1YOBmf-0006RF-Po from Tom_deVries@mentor.com ; Wed, 18 Feb 2015 13:03:49 -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; Wed, 18 Feb 2015 21:03:48 +0000 Message-ID: <54E4FE31.2060605@mentor.com> Date: Wed, 18 Feb 2015 22:03:45 +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: GCC Patches , gcc fortran ml Subject: [committed] Add missing cleanup in gfortran.dg/pr37287-1.f90 Hi, After running gfortran tests, I found a pr37287_2.mod in my test directory. Fixed by this patch which adds a missing cleanup-modules. Tested by running the testcase and checking that the file does not occur anymore in the test directory. Committed as obvious. Thanks, - Tom 2015-02-18 Tom de Vries * gfortran.dg/pr37287-1.f90: Add missing cleanup-modules. --- gcc/testsuite/gfortran.dg/pr37287-1.f90 | 1 + 1 file changed, 1 insertion(+) diff --git a/gcc/testsuite/gfortran.dg/pr37287-1.f90 b/gcc/testsuite/gfortran.dg/pr37287-1.f90 index c2d42e6..ca8b879 100644 --- a/gcc/testsuite/gfortran.dg/pr37287-1.f90 +++ b/gcc/testsuite/gfortran.dg/pr37287-1.f90 @@ -12,3 +12,4 @@ contains end subroutine set_null end module pr37287_1 end +! { dg-final { cleanup-modules "pr37287_2" } } -- 1.9.1