Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d3fe83a7 authored by Florian Mayer's avatar Florian Mayer
Browse files

Replace ASan with HWASan

ASan on device is deprecated and HWASan now works on all arm64 devices

Test: atest libcompositionengine_test
Bug: 300289881
Change-Id: I978bf4e3f5117e95799271a8fc4e8acdae58fc15
parent a1681106
Loading
Loading
Loading
Loading
+1 −13
Original line number Diff line number Diff line
@@ -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,
    },
}