summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Florian Mayer <fmayer@google.com> 2023-09-14 05:53:02 +0000
committer Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> 2023-09-14 05:53:02 +0000
commit9ce6dd88fefb91b0367f6594a562d15255d93d20 (patch)
treed58e9dee1406e1d2ba80547d823d0159accf5d92
parent20836a57b4e70a37ff9619a580e3c26a716b2327 (diff)
parentf83dc48f0bdffbd7196efa5f569062fc06baf713 (diff)
Merge "Replace ASan with HWASan" into main am: 480edf5266 am: 69b302d204 am: 3bb3b8f5c2 am: 0d2d690c4c am: f83dc48f0b
Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/2751626 Change-Id: I560cd3739a491dcf79dc84985dc88cd4c7b2196a Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r--services/surfaceflinger/CompositionEngine/Android.bp14
1 files changed, 1 insertions, 13 deletions
diff --git a/services/surfaceflinger/CompositionEngine/Android.bp b/services/surfaceflinger/CompositionEngine/Android.bp
index 06c5e4c933..2dc7332ed7 100644
--- a/services/surfaceflinger/CompositionEngine/Android.bp
+++ b/services/surfaceflinger/CompositionEngine/Android.bp
@@ -148,18 +148,6 @@ cc_test {
"libvulkan",
],
sanitize: {
- // By using the address sanitizer, we not only uncover any issues
- // with the test, but also any issues with the code under test.
- //
- // Note: If you get an runtime link error like:
- //
- // CANNOT LINK EXECUTABLE "/data/local/tmp/libcompositionengine_test": library "libclang_rt.asan-aarch64-android.so" not found
- //
- // it is because the address sanitizer shared objects are not installed
- // by default in the system image.
- //
- // You can either "make dist tests" before flashing, or set this
- // option to false temporarily.
- address: true,
+ hwaddress: true,
},
}