Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
8282509: [exploded image] ResolvedClassTest fails with similar output
Reviewed-by: mdoerr, dlong
  • Loading branch information
backwaterred authored and TheRealMDoerr committed Mar 10, 2022
1 parent 9c88c5b commit 7c8ea9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/hotspot/jtreg/compiler/inlining/ResolvedClassTest.java
Expand Up @@ -125,9 +125,9 @@ static void testIndy() throws IOException {

analyzer.shouldHaveExitValue(0);

analyzer.shouldNotContain("java.lang.invoke.Invokers$Holder::linkToTargetMethod (9 bytes) not inlineable");
analyzer.shouldNotMatch("java\\.lang\\.invoke\\..+::linkToTargetMethod \\(9 bytes\\) not inlineable");

analyzer.shouldContain("java.lang.invoke.Invokers$Holder::linkToTargetMethod (9 bytes) force inline by annotation");
analyzer.shouldMatch("java\\.lang\\.invoke\\..+::linkToTargetMethod \\(9 bytes\\) force inline by annotation");
analyzer.shouldContain("java/lang/invoke/MethodHandle::invokeBasic (not loaded) not inlineable");
}

Expand Down

3 comments on commit 7c8ea9f

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

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

@TheRealMDoerr
Copy link
Contributor

Choose a reason for hiding this comment

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

/backport jdk17u-dev

@openjdk
Copy link

@openjdk openjdk bot commented on 7c8ea9f Mar 10, 2022

Choose a reason for hiding this comment

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

@TheRealMDoerr the backport was successfully created on the branch TheRealMDoerr-backport-7c8ea9f0 in my personal fork of openjdk/jdk17u-dev. To create a pull request with this backport targeting openjdk/jdk17u-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 7c8ea9f0 from the openjdk/jdk repository.

The commit being backported was authored by Tyler Steele on 10 Mar 2022 and was reviewed by Martin Doerr and Dean Long.

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/jdk17u-dev:

$ git fetch https://github.com/openjdk-bots/jdk17u-dev TheRealMDoerr-backport-7c8ea9f0:TheRealMDoerr-backport-7c8ea9f0
$ git checkout TheRealMDoerr-backport-7c8ea9f0
# make changes
$ git add paths/to/changed/files
$ git commit --message 'Describe additional changes made'
$ git push https://github.com/openjdk-bots/jdk17u-dev TheRealMDoerr-backport-7c8ea9f0

Please sign in to comment.