Skip to content

Commit a8a83ba

Browse files
author
duke
committedMar 10, 2022
Automatic merge of jdk:master into master
2 parents ecc225e + 7c8ea9f commit a8a83ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎test/hotspot/jtreg/compiler/inlining/ResolvedClassTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,9 @@ static void testIndy() throws IOException {
125125

126126
analyzer.shouldHaveExitValue(0);
127127

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

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

0 commit comments

Comments
 (0)
Please sign in to comment.