diff options
author | mtklein <mtklein@chromium.org> | 2016-02-06 19:12:23 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-02-06 19:12:23 -0800 |
commit | e721a8e883231af1878772ecd23be325113fcc48 (patch) | |
tree | 794d3a66459d5955f005272381e65f42423d90a3 /gyp | |
parent | 23e78d372f01867f6a96a436b9e5f24fd4f8e2e3 (diff) |
flags and hacks to get MSAN bot going
This disables a few tests in DM:
- one BlurLargeImage GM maybe is really broken
- FontMgrAndroidParser uses libexpat, which I've not (yet?) built from source,
so MSAN can't see into it.
This extends some of the MSAN stifling we added around SkImageDecoder_libjpeg to SkCodec, and skips .wbmps, .pngs, and .bmps. We're only seeing issues in colortables for .png and .bmp.
I think I can probably back out disabling Codec and the RAW image decodes...
they should all be covered by the libjpeg stifles.
BUG=skia:4550,skia:4900
GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1673663002
CQ_EXTRA_TRYBOTS=client.skia:Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-SKNX_NO_SIMD-Trybot,Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-MSAN-Trybot
TBR=msarett@google.com
Review URL: https://codereview.chromium.org/1673663002
Diffstat (limited to 'gyp')
-rw-r--r-- | gyp/common_conditions.gypi | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gyp/common_conditions.gypi b/gyp/common_conditions.gypi index 859577e1a3..1f90d6f9f1 100644 --- a/gyp/common_conditions.gypi +++ b/gyp/common_conditions.gypi @@ -451,6 +451,9 @@ [ 'skia_sanitizer == "thread"', { 'defines': [ 'THREAD_SANITIZER' ], }], + [ 'skia_sanitizer == "memory"', { + 'cflags': [ '-fsanitize-memory-track-origins' ], + }], ], }], [ 'skia_clang_build', { |