From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1613 invoked by alias); 16 Aug 2011 11:47:10 -0000 Received: (qmail 1605 invoked by uid 22791); 16 Aug 2011 11:47:09 -0000 X-SWARE-Spam-Status: No, hits=-8.0 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,RP_MATCHES_RCVD,SPF_HELO_PASS X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 16 Aug 2011 11:46:48 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p7GBklLJ004420 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 16 Aug 2011 07:46:47 -0400 Received: from dhcp-lab-190.englab.brq.redhat.com (dhcp-2-245.brq.redhat.com [10.34.2.245]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id p7GBkkbY012335 for ; Tue, 16 Aug 2011 07:46:47 -0400 Message-ID: <4E4A5916.7020604@redhat.com> Date: Tue, 16 Aug 2011 11:47:00 -0000 From: Pavel Tisnovsky User-Agent: Thunderbird 2.0.0.23 (X11/20090825) MIME-Version: 1.0 To: mauve-discuss@sourceware.org Subject: Fix for test gnu/testlet/java/io/File/security.java Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact mauve-discuss-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: mauve-discuss-owner@sourceware.org X-SW-Source: 2011-q3/txt/msg00000.txt.bz2 Greetings, I'd like to fix the Mauve test "gnu/testlet/java/io/File/security.java" to properly close & delete all its work files and directories in the right order. The fix is very simple: --- mauve/gnu/testlet/java/io/File/security.java 2010-11-15 21:56:26.000000000 +0100 +++ mauve/gnu/testlet/java/io/File/security.java 2011-08-12 17:15:54.000000000 +0200 @@ -526,8 +526,9 @@ if (tmpfile2 != null) tmpfile2.delete(); if (tf1 != null) tf1.delete(); if (tf2 != null) tf2.delete(); - if (tmpdir != null) tmpdir.delete(); + if (tmpdir3 != null) tmpdir3.delete(); if (tmpdir2 != null) tmpdir2.delete(); + if (tmpdir != null) tmpdir.delete(); } } } Is it possible to push this fix to CVS please? Thank you in advance, Pavel Tisnovsky