summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSverker Eriksson <sverker@erlang.org>2021-10-04 23:37:22 +0200
committerSverker Eriksson <sverker@erlang.org>2021-10-04 23:37:57 +0200
commit2de33b8258e4989344de6dfb592d4e30237207ae (patch)
treee8bd05f44d4442da9f944ca54d1a8f2a5f836fb9
parentc5a3165db1dbdd6f2b1c320f311b641ab401c68a (diff)
downloaderlang-2de33b8258e4989344de6dfb592d4e30237207ae.tar.gz
Fix asan_logs_to_html regex
when a file ends with an ErrorReport.
-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 -