Skip to content

Commit

Permalink
8271323: [TESTBUG] serviceability/sa/ClhsdbCDSCore.java fails with -X…
Browse files Browse the repository at this point in the history
…X:TieredStopAtLevel=1

Reviewed-by: cjplummer, kvn
  • Loading branch information
nick-arm committed Jul 28, 2021
1 parent 752b6df commit 9bc52af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/hotspot/jtreg/serviceability/sa/ClhsdbCDSCore.java
Expand Up @@ -125,8 +125,8 @@ public static void main(String[] args) throws Exception {

List testJavaOpts = Arrays.asList(Utils.getTestJavaOpts());

if (testJavaOpts.contains("-Xcomp") && testJavaOpts.contains("-XX:TieredStopAtLevel=1")) {
// No MDOs are allocated in -XX:TieredStopAtLevel=1 + -Xcomp mode
if (testJavaOpts.contains("-XX:TieredStopAtLevel=1")) {
// No MDOs are allocated in -XX:TieredStopAtLevel=1
// The reason is methods being compiled aren't hot enough
// Let's not call printmdo in such scenario
cmds = List.of("printall", "jstack -v");
Expand Down

3 comments on commit 9bc52af

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@GoeLin
Copy link
Member

@GoeLin GoeLin commented on 9bc52af Feb 16, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/backport jdk11u-dev

@openjdk
Copy link

@openjdk openjdk bot commented on 9bc52af Feb 16, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@GoeLin the backport was successfully created on the branch GoeLin-backport-9bc52afa in my personal fork of openjdk/jdk11u-dev. To create a pull request with this backport targeting openjdk/jdk11u-dev:master, just click the following link:

➡️ Create pull request

The title of the pull request is automatically filled in correctly and below you find a suggestion for the pull request body:

Hi all,

This pull request contains a backport of commit 9bc52afa from the openjdk/jdk repository.

The commit being backported was authored by Nick Gasson on 28 Jul 2021 and was reviewed by Chris Plummer and Vladimir Kozlov.

Thanks!

If you need to update the source branch of the pull then run the following commands in a local clone of your personal fork of openjdk/jdk11u-dev:

$ git fetch https://github.com/openjdk-bots/jdk11u-dev GoeLin-backport-9bc52afa:GoeLin-backport-9bc52afa
$ git checkout GoeLin-backport-9bc52afa
# make changes
$ git add paths/to/changed/files
$ git commit --message 'Describe additional changes made'
$ git push https://github.com/openjdk-bots/jdk11u-dev GoeLin-backport-9bc52afa

Please sign in to comment.