Skip to content

Commit 128c6c6

Browse files
author
Brian Burkhalter
committedJul 12, 2022
8290095: java/nio/channels/FileChannel/largeMemory/LargeGatheringWrite.java timed out
Reviewed-by: jpai, alanb
1 parent 59d0c73 commit 128c6c6

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed
 

‎test/jdk/java/nio/channels/FileChannel/largeMemory/LargeGatheringWrite.java

+19-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2021, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -29,7 +29,7 @@
2929
* @library ..
3030
* @library /test/lib
3131
* @build jdk.test.lib.RandomFactory
32-
* @run main/othervm/timeout=240 -Xmx4G LargeGatheringWrite
32+
* @run main/othervm/timeout=480 -Xmx4G LargeGatheringWrite
3333
* @key randomness
3434
*/
3535
import java.io.IOException;
@@ -51,7 +51,17 @@ public class LargeGatheringWrite {
5151

5252
private static final Random RND = RandomFactory.getRandom();
5353

54+
private static long t0;
55+
56+
private static void printTime(String msg) {
57+
System.out.printf("TIMESTAMP: %-16s: %f seconds%n", msg,
58+
(System.nanoTime() - t0)/1000000000.0);
59+
}
60+
5461
public static void main(String[] args) throws IOException {
62+
t0 = System.nanoTime();
63+
printTime("start");
64+
5565
// Create direct and heap buffers
5666
ByteBuffer direct = ByteBuffer.allocateDirect(GB);
5767
ByteBuffer heap = ByteBuffer.allocate(GB);
@@ -83,6 +93,7 @@ public static void main(String[] args) throws IOException {
8393
// Write the data to a temporary file
8494
Path tempFile = Files.createTempFile("LargeGatheringWrite", ".dat");
8595

96+
printTime("before writing");
8697
System.out.printf("Writing %d bytes of data...%n", totalLength);
8798
try (FileChannel fcw = FileChannel.open(tempFile, CREATE, WRITE);) {
8899
// Print size of individual writes and total number written
@@ -93,11 +104,14 @@ public static void main(String[] args) throws IOException {
93104
bytesWritten += n;
94105
}
95106
System.out.printf("Total of %d bytes written\n", bytesWritten);
107+
printTime("after writing");
96108

97109
// Verify the content written
98110
try (FileChannel fcr = FileChannel.open(tempFile, READ);) {
99111
byte[] bytes = null;
100112
for (ByteBuffer buf : bigBuffers) {
113+
printTime("before verifying");
114+
101115
// For each buffer read the corresponding number of bytes
102116
buf.rewind();
103117
int length = buf.remaining();
@@ -117,10 +131,13 @@ public static void main(String[] args) throws IOException {
117131
String msg = String.format("mismatch: %d%n", mismatch);
118132
throw new RuntimeException(msg);
119133
}
134+
135+
printTime("after verifying");
120136
}
121137
}
122138
} finally {
123139
Files.delete(tempFile);
124140
}
141+
printTime("end");
125142
}
126143
}

0 commit comments

Comments
 (0)
Please sign in to comment.