From bf22e7fc85b7dd855724b55e7c12714437d770ea Mon Sep 17 00:00:00 2001 From: Amine Alami <43780877+Alami-Amine@users.noreply.github.com> Date: Mon, 30 Sep 2024 10:10:40 +0200 Subject: [PATCH] [connectedhomeip] Reactivate UndfinedBehaviorSanitizer (#12542) - Reactivating UndefinedBehaviorSanitizer after having fixed UBSan issue: https://github.com/project-chip/connectedhomeip/pull/35777 - MemorySanitizer can not be activated due to false positives showing for `glib`. Apparently all dependencies including glib will need to be re-compiled with MSan to avoid these false-positives. --- projects/connectedhomeip/project.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/projects/connectedhomeip/project.yaml b/projects/connectedhomeip/project.yaml index 9d25295076d8..4af1638e15ea 100644 --- a/projects/connectedhomeip/project.yaml +++ b/projects/connectedhomeip/project.yaml @@ -10,6 +10,10 @@ auto_ccs: - "aalami@csa-iot.org" sanitizers: - address + - undefined +# MemorySanitizer is deactivated due to false positives related to Glib +# For MSan; Glib and all others libs should be compiled with MSan +# - memory fuzzing_engines: - libfuzzer - honggfuzz