read entire marker notes file instead of first line

This commit is contained in:
2026-04-23 22:44:50 +02:00
parent c76b0b8a8e
commit 2b554a22ad

View File

@ -214,6 +214,7 @@ sub read_marker_info {
open( my $fhandle, '<',
"$local_archive_dir/$experiment/markers/$benchmark-$address.info" )
or die "Failed to open $benchmark-$address.info: $!";
local $/;
my $info = <$fhandle>;
chomp $info;
close($fhandle);