8227646: [TESTBUG] appcds/SharedArchiveConsistency timed out jdk-13+30
authorccheung
Wed, 17 Jul 2019 08:34:45 -0700
changeset 57482 2e63fb0a885f
parent 55716 a5d52b0e3798
child 57483 afeafa018937
8227646: [TESTBUG] appcds/SharedArchiveConsistency timed out Summary: Remove the FileChannel.force() calls. Reviewed-by: dcubed, iklam
test/hotspot/jtreg/runtime/appcds/SharedArchiveConsistency.java
--- a/test/hotspot/jtreg/runtime/appcds/SharedArchiveConsistency.java	Wed Jul 17 00:21:02 2019 +0000
+++ b/test/hotspot/jtreg/runtime/appcds/SharedArchiveConsistency.java	Wed Jul 17 08:34:45 2019 -0700
@@ -163,7 +163,6 @@
     public static void writeData(FileChannel fc, long offset, ByteBuffer bb) throws Exception {
         fc.position(offset);
         fc.write(bb);
-        fc.force(true);
     }
 
     public static FileChannel getFileChannel(File jsaFile) throws Exception {
@@ -247,7 +246,6 @@
             bbuf.clear();
             bytes_written += 4096;
         }
-        fc.force(true);
         if (fc.isOpen()) {
             fc.close();
         }