From: Richard W.M. Jones Date: Wed, 2 Mar 2011 05:10:31 +0000 (+0000) Subject: java: Remove old test file if one was left around. X-Git-Tag: 1.9.9~6 X-Git-Url: http://git.annexia.org/?a=commitdiff_plain;h=80aad709954cc4a3a294200e242876599047cef8;p=libguestfs.git java: Remove old test file if one was left around. If a test.img file was left over from a previous run, then it would cause the subsequent test to fail. Therefore remove any old test.img file. --- diff --git a/java/t/GuestFS010Basic.java b/java/t/GuestFS010Basic.java index f4778dc..137fad3 100644 --- a/java/t/GuestFS010Basic.java +++ b/java/t/GuestFS010Basic.java @@ -24,6 +24,10 @@ public class GuestFS010Basic public static void main (String[] argv) { try { + // Delete any previous test file if one was left around. + File old = new File ("test.img"); + old.delete (); + RandomAccessFile f = new RandomAccessFile ("test.img", "rw"); f.setLength (500 * 1024 * 1024); f.close ();