-
Notifications
You must be signed in to change notification settings - Fork 130
8327257: [lworld] Tests are needed to stress class preloading with concurrent class loadings #1552
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
Conversation
|
👋 Welcome back phubner! A progress list of the required criteria for merging this PR into |
|
@Arraying 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 2 new commits pushed to the
Please see this link for an up-to-date comparison between the source branch of this pull request and the As you do not have Committer status in this project an existing Committer must agree to sponsor your change. Possible candidates are the reviewers of this PR (@MrSimms) but any other Committer may sponsor as well. ➡️ To flag this PR as ready for integration with the above commit message, type |
Webrevs
|
|
Sorry I pushed the jdk-26+1 merge, meaning you'll need to flick major version (69 to 70). |
MrSimms
left a comment
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 for the review. |
|
/integrate |
|
/sponsor |
Hi all,
This change strengthens our Valhalla-specific classloading test suite and guards against regressions. An overview of the new changes is as follows:
BigClassTreeClassLoader: a utility classloader that generates huge class trees on the fly. The idea is to generate a tree that is deep (lots of parent classes) and very wide (classes have lots of value classes as fields, which have value class fields, etc.).ConcurrentClassLoadingTeststrains the classloading and preloading by classloading many classes at the same time.LoadableDescriptorsTestensures that theLoadableDescriptorsattribute can handle unexpected data. This may need to be revisited if https://bugs.openjdk.org/browse/JDK-8366907 changes the semantics.PreLoadCircularityTestensures that preloading happens even when there are cycles (via inheritance, fields, and both).PreLoadDoesNotInitTestis a regression test that ensures preloading will not initialize a class.PreLoadFailuresDoNotImpactApplicationTestensures that a flaky classloader during preloading will not cause crashes as long as the classloader can find the class when it is actually used.ValueClassInheritanceTestis a regression test that ensures one cannot have a value class inherit from something that's not an abstract value class.Progress
Issue
Reviewers
Reviewing
Using
gitCheckout this PR locally:
$ git fetch https://git.openjdk.org/valhalla.git pull/1552/head:pull/1552$ git checkout pull/1552Update a local copy of the PR:
$ git checkout pull/1552$ git pull https://git.openjdk.org/valhalla.git pull/1552/headUsing Skara CLI tools
Checkout this PR locally:
$ git pr checkout 1552View PR using the GUI difftool:
$ git pr show -t 1552Using diff file
Download this PR as a diff file:
https://git.openjdk.org/valhalla/pull/1552.diff
Using Webrev
Link to Webrev Comment