From 47539ac7181a8ea8d66dc3a04d87282b9176efcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20W=C3=B3jcik?= <3044353+pwojcikdev@users.noreply.github.com> Date: Sun, 27 Oct 2024 12:46:34 +0100 Subject: [PATCH] Enable reporting memory leaks when running sanitizers (#4769) --- .github/workflows/code_sanitizers.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/code_sanitizers.yml b/.github/workflows/code_sanitizers.yml index 1a6ae97b..9e9e7d6c 100644 --- a/.github/workflows/code_sanitizers.yml +++ b/.github/workflows/code_sanitizers.yml @@ -16,7 +16,7 @@ jobs: - { name: ASAN, ignore_errors: false, leak_check: false } - { name: ASAN_INT, ignore_errors: true, leak_check: false } - { name: TSAN, ignore_errors: false } - - { name: LEAK, ignore_errors: true, leak_check: true } + - { name: LEAK, ignore_errors: false, leak_check: true } exclude: # Bug when running with TSAN: "ThreadSanitizer: CHECK failed: sanitizer_deadlock_detector" - BACKEND: rocksdb