diff options
| author | 2019-08-20 17:37:52 -0700 | |
|---|---|---|
| committer | 2019-08-21 23:44:31 +0000 | |
| commit | 2e8910eed98aa89455d1e0f9947b599318d0f156 (patch) | |
| tree | 9392dd083ae809beb3e19c0fb26fa639ceb3991f | |
| parent | 934b524b9558c70dff13c8974d718fb270fabf53 (diff) | |
Temporarily turn off ASAN for libcompositionengine_test
ASAN build is broken for a while, but was not discovered since new PM
silently suppressed ASAN. Temporarily turn off ASAN to unblock the
compiler upgrade process.
Test: build with Clang r365631
Bug: 139747256
Bug: 131328001
Change-Id: I078a6a4d51bceafd7aff8cf00f10b30c0f902cfb
Merged-In: I078a6a4d51bceafd7aff8cf00f10b30c0f902cfb
(cherry picked from commit f43b664ccda5e36de3e8730f6104f6e8e0bb531d)
Exempt-From-Owner-Approval: cherrypick to fix build break
| -rw-r--r-- | services/surfaceflinger/CompositionEngine/Android.bp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/services/surfaceflinger/CompositionEngine/Android.bp b/services/surfaceflinger/CompositionEngine/Android.bp index 6f076ad11f..1c31ab9d7d 100644 --- a/services/surfaceflinger/CompositionEngine/Android.bp +++ b/services/surfaceflinger/CompositionEngine/Android.bp @@ -118,6 +118,13 @@ cc_test { // // You can either "make dist tests" before flashing, or set this // option to false temporarily. - address: true, + + + // FIXME: ASAN build is broken for a while, but was not discovered + // since new PM silently suppressed ASAN. Temporarily turn off ASAN + // to unblock the compiler upgrade process. + // address: true, + // http://b/139747256 + address: false, }, } |