mirror of
https://github.com/libguestfs/libguestfs.git
synced 2026-03-22 07:03:38 +00:00
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.
This commit is contained in:
@@ -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 ();
|
||||
|
||||
Reference in New Issue
Block a user