Skip to content

Commit

Permalink
JVM output for verbose:class has changed.
Browse files Browse the repository at this point in the history
  • Loading branch information
rjust committed May 11, 2024
1 parent f8f9651 commit 1b8c79a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion framework/core/Project.pm
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,9 @@ sub monitor_test {
# - A "normal" class named with one or more $ symbols, e.g., com.google.gson.internal.$Gson$Types
# from Gson-{14,16,18}.
#
s/\[Loaded (.*) from.*/$1/;
# First match corresponds to what a Java-8 JVM outputs; the second match
# corresponds to what a Java-11 JVM outputs.
s/\[Loaded (.*) from.*/$1/ or s/\S* (.*) source: .*/$1/;
my $found = 0;
if (defined $src->{$_}) {
$found = 1;
Expand Down

0 comments on commit 1b8c79a

Please sign in to comment.