Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[report-converter] Allow for empty strings in sanitizer error msgs #4147

Merged

Conversation

Szelethus
Copy link
Contributor

Sometimes, memory addresses will simply be omitted from the sanitizer error messages. In this case, .+ will not match the error message, since this matches strings with the minimum length of 3, but the address-less message usually looks like this:
error on adress , because, with only 2 characters there. The fix is simple -- simply change .+ zo .*.

I also added generic messages to asan, because we were missing that.

Sometimes, memory addresses will simply be omitted from the sanitizer
error messages. In this case, ` .+ ` will not match the error message,
since this matches strings with the minimum length of 3, but the
address-less message usually looks like this:
`error on adress  , because`, with only 2 characters there. The fix is
simple -- simply change `.+` zo `.*`.

I also added generic messages to asan, because we were missing that.
@Szelethus Szelethus added this to the release 6.23.2 milestone Jan 4, 2024
@bruntib bruntib merged commit de22308 into Ericsson:master Jan 25, 2024
8 checks passed
@whisperity whisperity modified the milestones: release 6.23.2, release 6.24.0 Mar 21, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants