From c611e9f37e9269a952db373618fca07f9ce7ac67 Mon Sep 17 00:00:00 2001 From: Richard Hughes Date: Fri, 29 Jul 2022 16:25:20 +0100 Subject: [PATCH] Use -Db_sanitize=address,undefined in Fedora CI This would have caught the recent memory corruption automatically. --- contrib/ci/dependencies.xml | 12 ++++++++++++ contrib/ci/fedora.sh | 1 + 2 files changed, 13 insertions(+) diff --git a/contrib/ci/dependencies.xml b/contrib/ci/dependencies.xml index 5b5ed5b17..0780c3935 100644 --- a/contrib/ci/dependencies.xml +++ b/contrib/ci/dependencies.xml @@ -1727,6 +1727,18 @@ + + + + + + + + + + + + diff --git a/contrib/ci/fedora.sh b/contrib/ci/fedora.sh index 1a7fe6fcf..cdb398a10 100755 --- a/contrib/ci/fedora.sh +++ b/contrib/ci/fedora.sh @@ -20,6 +20,7 @@ meson .. \ -Ddocs=disabled \ -Dman=true \ -Dtests=true \ + -Db_sanitize=address,undefined \ -Dgusb:tests=false \ -Dplugin_dummy=true \ -Dplugin_flashrom=enabled \