Skip to content

Commit

Permalink
8324236: compiler/ciReplay/TestInliningProtectionDomain.java failed w…
Browse files Browse the repository at this point in the history
…ith RuntimeException: should only dump inline information for ... expected true, was false

Backport-of: 72ba8178a8271d4a04a0b789f28b23414b8989ed
  • Loading branch information
GoeLin committed Mar 25, 2024
1 parent 098656d commit 2836734
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public void testAction() {
boolean inlineFails = testClass == ProtectionDomainTestNoOtherCompilationPrivate.class;
int inlineeCount = inlineFails ? 1 : 5;

List<InlineEntry> inlineesNormal = parseLogFile(LOG_FILE_NORMAL, entryString, "compile_id='" + getCompileIdFromFile(getReplayFileName()), inlineeCount);
List<InlineEntry> inlineesNormal = parseLogFile(LOG_FILE_NORMAL, entryString, "compile_id='" + getCompileIdFromFile(getReplayFileName()) + "'", inlineeCount);
List<InlineEntry> inlineesReplay = parseLogFile(LOG_FILE_REPLAY, entryString, "test ()V", inlineeCount);
verifyLists(inlineesNormal, inlineesReplay, inlineeCount);

Expand Down

1 comment on commit 2836734

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

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

Please sign in to comment.