提交 6bce28ac 编写于 作者: A alanb

7012823: TEST_BUG: java/nio/MappedByteBuffer tests leave file mappingsthat prevent clean-up (win)

Reviewed-by: forax
上级 59400f76
......@@ -37,14 +37,17 @@ public class Force {
Random random = new Random();
long filesize = random.nextInt(3*1024*1024);
int cut = random.nextInt((int)filesize);
File file = new File("Blah");
RandomAccessFile raf = new RandomAccessFile(file, "rw");
raf.setLength(filesize);
FileChannel fc = raf.getChannel();
MappedByteBuffer buf1 = fc.map(
FileChannel.MapMode.READ_WRITE, cut, filesize-cut);
buf1.force();
fc.close();
raf.close();
File file = File.createTempFile("Blah", null);
file.deleteOnExit();
try (RandomAccessFile raf = new RandomAccessFile(file, "rw")) {
raf.setLength(filesize);
FileChannel fc = raf.getChannel();
MappedByteBuffer mbb = fc.map(FileChannel.MapMode.READ_WRITE, cut, filesize-cut);
mbb.force();
}
// improve chance that mapped buffer will be unmapped
System.gc();
Thread.sleep(500);
}
}
......@@ -37,16 +37,19 @@ public class ZeroMap {
Random random = new Random();
long filesize = random.nextInt(1024*1024);
int cut = random.nextInt((int)filesize);
File file = new File("Blah");
RandomAccessFile raf = new RandomAccessFile(file, "rw");
raf.setLength(filesize);
FileChannel fc = raf.getChannel();
MappedByteBuffer buf1 = fc.map(
FileChannel.MapMode.READ_WRITE, cut, 0);
buf1.force();
buf1.load();
buf1.isLoaded();
fc.close();
raf.close();
File file = File.createTempFile("Blah", null);
file.deleteOnExit();
try (RandomAccessFile raf = new RandomAccessFile(file, "rw")) {
raf.setLength(filesize);
FileChannel fc = raf.getChannel();
MappedByteBuffer mbb = fc.map(FileChannel.MapMode.READ_WRITE, cut, 0);
mbb.force();
mbb.load();
mbb.isLoaded();
}
// improve chance that mapped buffer will be unmapped
System.gc();
Thread.sleep(500);
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册