From 2b554a22ad49e7318af632523b57b5ee1f618f92 Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Thu, 23 Apr 2026 22:44:50 +0200 Subject: [PATCH] read entire marker notes file instead of first line --- scripts/Util.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/Util.pm b/scripts/Util.pm index 49bc845..a599860 100644 --- a/scripts/Util.pm +++ b/scripts/Util.pm @@ -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);