diff options
author | jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com> | 2021-08-24 15:24:47 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-24 15:24:47 -0700 |
commit | 806d1a06206a5f6d81d5f1dc4949682dbcee30ad (patch) | |
tree | 675121ee785c3be604ea51644af0817e0b1f78fd /projects/libtiff | |
parent | bf1275f0058ed88d916db0863d658a9d09665674 (diff) |
[Ubuntu upgrade] Disable MSAN where it doesn't support on Ubuntu 20.04 (#6281)
These projects were tested and it was found that their use
of MSAN does not work on Ubuntu 20.04. Therefore their use of
MSAN is being disabled.
Related: #6180
Diffstat (limited to 'projects/libtiff')
-rw-r--r-- | projects/libtiff/project.yaml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/projects/libtiff/project.yaml b/projects/libtiff/project.yaml index 6c7666b4..000f9108 100644 --- a/projects/libtiff/project.yaml +++ b/projects/libtiff/project.yaml @@ -5,9 +5,10 @@ auto_ccs: - paul.l.kehrer@gmail.com sanitizers: - address - - memory +# Disabled MSAN because of https://github.com/google/oss-fuzz/issues/6294 +# - memory - undefined architectures: - x86_64 - i386 -main_repo: 'https://gitlab.com/libtiff/libtiff' +main_repo: 'https://gitlab.com/libtiff/libtiff'
\ No newline at end of file |