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
8268227: java/foreign/TestUpcall.java still times out #4355
Conversation
|
@mcimadamore 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. |
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.
Thumbs up!
-XX:-VerifyDependencies is useful for getting around the non-release
bits slowness added by the new CHA based stuff added by:
JDK-8266074 Vtable-based CHA implementation
@mcimadamore This change now passes all automated pre-integration checks. 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 14 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.
|
@mcimadamore - Can you please integrate this fix? |
Mailing list message from David Holmes on core-libs-dev: On 8/06/2021 5:23 am, Daniel D.Daugherty wrote:
I see this test failing on Windows in GHA for tier1. David |
1 similar comment
Mailing list message from David Holmes on core-libs-dev: On 8/06/2021 5:23 am, Daniel D.Daugherty wrote:
I see this test failing on Windows in GHA for tier1. David |
/integrate |
@mcimadamore Since your change was applied there have been 60 commits pushed to the
Your commit was automatically rebased without conflicts. Pushed as commit 6843576. |
Turns out that adding more timeout is a lost cause here. The root cause of the slowdown when running the test in debug build is:
https://bugs.openjdk.java.net/browse/JDK-8266074
Which has also caused related test issues:
https://bugs.openjdk.java.net/browse/JDK-8268095
So, the fix (at least temporarily) is to run method handle-heavy tests with the -XX:-VerifyDependency options.
On my machine, execution time of these tests on debug goes from 10 minutes down to less than 1.
Since
-XX:-VerifyDependencies
cannot be specified on non-debug build, the-XX:+IgnoreUnrecognizedVMOptions
is also passed (thanks Vlad for the tip!).Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.java.net/jdk pull/4355/head:pull/4355
$ git checkout pull/4355
Update a local copy of the PR:
$ git checkout pull/4355
$ git pull https://git.openjdk.java.net/jdk pull/4355/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 4355
View PR using the GUI difftool:
$ git pr show -t 4355
Using diff file
Download this PR as a diff file:
https://git.openjdk.java.net/jdk/pull/4355.diff