diff options
author | 2019-08-20 17:37:52 -0700 | |
---|---|---|
committer | 2019-08-20 17:37:52 -0700 | |
commit | f43b664ccda5e36de3e8730f6104f6e8e0bb531d (patch) | |
tree | d045b58bf97e0999ee1f6c6b2a7bfc8ad4ee8979 | |
parent | a6e6a0a5b37d29c0963bb459aab7584144a03eb6 (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
-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 ae6bdbce60..580bde8624 100644 --- a/services/surfaceflinger/CompositionEngine/Android.bp +++ b/services/surfaceflinger/CompositionEngine/Android.bp @@ -119,6 +119,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, }, } |