summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xerts/emulator/asan/asan_logs_to_html3
1 files changed, 2 insertions, 1 deletions
diff --git a/erts/emulator/asan/asan_logs_to_html b/erts/emulator/asan/asan_logs_to_html
index 14c9b7fcde..fad5ce7137 100755
--- a/erts/emulator/asan/asan_logs_to_html
+++ b/erts/emulator/asan/asan_logs_to_html
@@ -152,7 +152,8 @@ match_loop(Out, Bin, RegEx0, LogAcc0, PrevEnd, Unmatched0, LM0) ->
%% ErrorReport
"(?:(==ERROR: AddressSanitizer:.*\n"
"(?:.*\n)+?)" % any lines (non-greedy)
- "^(?:==|--))" % stop at line begining with == or --
+ "(?:^(?:==|--)|\\z))" % stop at line begining with == or --
+ % or at end-of-string
"|"
%% Skipped
"(?:^[=-]+$)" % skip lines consisting only of = or -