-
Notifications
You must be signed in to change notification settings - Fork 5.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
8298073: gc/metaspace/CompressedClassSpaceSizeInJmapHeap.java causes test task timeout on macosx #11576
Conversation
/issue JDK-8241293 |
👋 Welcome back cjplummer! A progress list of the required criteria for merging this PR into |
@plummercj |
@plummercj The following label will be automatically applied to this pull request:
When this pull request is ready to be reviewed, an "RFR" email will be sent to the corresponding mailing list. If you would like to change these labels, use the /label pull request command. |
Webrevs
|
/label serviceability |
@plummercj |
Ping. Trying to trigger email to serviceability-dev. |
@plummercj This change now passes all automated pre-integration checks. ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details. After integration, the commit message for the final commit will be:
You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed. At the time when this comment was updated there had been 25 new commits pushed to the
As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid this automatic rebasing, please check the documentation for the /integrate command for further details. ➡️ To integrate this PR with the above commit message to the |
test/hotspot/jtreg/gc/metaspace/CompressedClassSpaceSizeInJmapHeap.java
Outdated
Show resolved
Hide resolved
…Heap.java Delete extra space. Co-authored-by: Andrey Turbanov <turbanoff@gmail.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good.
Thanks,
Serguei
@@ -32,10 +32,11 @@ | |||
* @library /test/lib | |||
* @modules java.base/jdk.internal.misc | |||
* java.management | |||
* @run main/othervm -XX:CompressedClassSpaceSize=48m gc.metaspace.CompressedClassSpaceSizeInJmapHeap | |||
* @run main/timeout=240 gc.metaspace.CompressedClassSpaceSizeInJmapHeap |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: unneeded space after 240.
test/hotspot/jtreg/gc/metaspace/CompressedClassSpaceSizeInJmapHeap.java
Outdated
Show resolved
Hide resolved
…Heap.java Remove extra space.
Thanks for the reviews! /integrate |
Going to push as commit 99a6c47.
Your commit was automatically rebased without conflicts. |
@plummercj Pushed as commit 99a6c47. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
This fixes two separate CRs:
JDK-8241293 CompressedClassSpaceSizeInJmapHeap.java time out after 8 minutes
JDK-8298073 gc/metaspace/CompressedClassSpaceSizeInJmapHeap.java causes test task timeout on macosx
For the first one the test was hitting an 8m timeout, but completing right after that. The test log said PASSED, but jtreg failed it anyway because it noticed the timeout. The fix is to double the default 120s timeout to 240s (which is 16m when the 4x timeoutfactor is applied.
For the second one the issue seemed to be with having the test process spawn a jhsdb process that attached back to the test process. OSX didn't seem to be too happy about this. The fix is to instead create a LingeredApp process to attach to like all the other SA tests do.
Progress
Issues
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk pull/11576/head:pull/11576
$ git checkout pull/11576
Update a local copy of the PR:
$ git checkout pull/11576
$ git pull https://git.openjdk.org/jdk pull/11576/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 11576
View PR using the GUI difftool:
$ git pr show -t 11576
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/11576.diff