Merge pull request #5276 from sfc-gh-satherton/block-valgrind-warning

Ignore warning from valgrind about F_SET_RW_HINT usage.
This commit is contained in:
Steve Atherton 2021-07-26 16:43:30 -07:00 committed by GitHub
commit 24dad67d72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -966,6 +966,10 @@ namespace SummarizeTest
// When running ASAN we expect to see this message. Boost coroutine should be using the correct asan annotations so that it shouldn't produce any false positives.
continue;
}
if (err.EndsWith("Warning: unimplemented fcntl command: 1036")) {
// Valgrind produces this warning when F_SET_RW_HINT is used
continue;
}
if (stderrSeverity == (int)Magnesium.Severity.SevError)
{
error = true;