Skip to content

Commit 7468bbc

Browse files
author
Igor Veresov
committedJul 23, 2021
8266988: compiler/jvmci/compilerToVM/IsMatureTest.java fails with Unexpected isMature state for multiple times invoked method: expected false to equal true
Reviewed-by: kvn
1 parent 286106d commit 7468bbc

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed
 

‎test/hotspot/jtreg/compiler/jvmci/compilerToVM/IsMatureTest.java

+7-4
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,13 @@ public void test() throws Exception {
7878
&& compLevel != CompilerWhiteBoxTest.COMP_LEVEL_SIMPLE) {
7979
Asserts.assertNE(methodData, 0L,
8080
"Multiple times invoked method should have method data");
81-
/* a method is not mature in Xcomp mode with tiered compilation disabled,
82-
see NonTieredCompPolicy::is_mature */
83-
Asserts.assertEQ(isMature, !(Platform.isComp() && !TIERED),
84-
"Unexpected isMature state for multiple times invoked method");
81+
// The method may or may not be mature if it's compiled with limited profile.
82+
if (compLevel != CompilerWhiteBoxTest.COMP_LEVEL_LIMITED_PROFILE) {
83+
/* a method is not mature in Xcomp mode with tiered compilation disabled,
84+
see NonTieredCompPolicy::is_mature */
85+
Asserts.assertEQ(isMature, !(Platform.isComp() && !TIERED),
86+
"Unexpected isMature state for multiple times invoked method");
87+
}
8588
}
8689
}
8790
}

0 commit comments

Comments
 (0)
Please sign in to comment.