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

Commit 2c77c709 authored by Siarhei Vishniakou's avatar Siarhei Vishniakou
Browse files

Additional sanitizers for libinput_tests

This will enable additional sanitizers and the debugging info
for libinput_tests executions.

Bug: 271455682
Change-Id: I4237aea53173f8383a7e9095721c7c81a686cdcf
Test: TEST=libinput_tests; m $TEST && $ANDROID_HOST_OUT/nativetest64/$TEST/$TEST
Flag: TEST_ONLY
parent 3c3d749c
Loading
Loading
Loading
Loading
+8 −5
Original line number Diff line number Diff line
@@ -58,11 +58,19 @@ cc_test {
        "-Wno-unused-parameter",
    ],
    sanitize: {
        address: true,
        hwaddress: true,
        undefined: true,
        all_undefined: true,
        diag: {
            cfi: true,
            integer_overflow: true,
            memtag_heap: true,
            undefined: true,
            misc_undefined: [
                "bounds",
                "all",
            ],
        },
    },
    shared_libs: [
@@ -92,11 +100,6 @@ cc_test {
                "libstatssocket_lazy",
            ],
        },
        host: {
            sanitize: {
                address: true,
            },
        },
    },
    native_coverage: false,
}