RFR: 8263054: [testbug] SharedArchiveConsistency.java reuses jsa files
Yumin Qi
minqi at openjdk.java.net
Fri Mar 5 18:21:05 UTC 2021
On Fri, 5 Mar 2021 02:36:36 GMT, Ioi Lam <iklam at openjdk.org> wrote:
> SharedArchiveConsistency.java runs a child process with a JSA file. Then, it modifies the JSA file, and then reuses this same JSA file to run another child process.
>
> However, on Windows, after first child process has exited, some sort of file lock is still held on the JSA file, so when we try to modify the JSA file for the second process, sometimes we get the "The requested operation cannot be performed on a file with a user-mapped section open" error.
>
> The fix is to always create a new JSA file for every new test case, and never modify/reuse the JSA files. (We have been following this rule for other CDS tests).
LGTM.
-------------
Marked as reviewed by minqi (Reviewer).
PR: https://git.openjdk.java.net/jdk/pull/2839
More information about the hotspot-runtime-dev
mailing list