summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Florian Mayer <fmayer@google.com> 2023-09-14 01:13:34 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2023-09-14 01:13:34 +0000
commit480edf5266a808169d96fbfcfdbdc511d1b9c4c6 (patch)
tree5bb8d3cf5dd8d59e87a9e1faa9a67527ea0f4c7d
parent6a7d49df27c1ed2bee4c7a11f093c2630417b89c (diff)
parentd3fe83a781277bd9ba028733893b989ef5a1d2ac (diff)
Merge "Replace ASan with HWASan" into main
-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 11a9e19db8..f12d7b6a17 100644
--- a/services/surfaceflinger/CompositionEngine/Android.bp
+++ b/services/surfaceflinger/CompositionEngine/Android.bp
@@ -140,18 +140,6 @@ cc_test {
"libgtest",
],
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,
},
}