From ccc0ac8b86f628275a58537469a8d2af49e331aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Wo=CC=81jcik?= <3044353+pwojcikdev@users.noreply.github.com> Date: Sat, 6 Apr 2024 10:58:53 +0200 Subject: [PATCH] Enable reporting TSAN errors --- .github/workflows/code_sanitizers.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/code_sanitizers.yml b/.github/workflows/code_sanitizers.yml index c82c31b280..6da5f0ec18 100644 --- a/.github/workflows/code_sanitizers.yml +++ b/.github/workflows/code_sanitizers.yml @@ -15,7 +15,7 @@ jobs: - { name: UBSAN, ignore_errors: false } - { name: ASAN, ignore_errors: false, leak_check: false } - { name: ASAN_INT, ignore_errors: true, leak_check: false } - - { name: TSAN, ignore_errors: true } + - { name: TSAN, ignore_errors: false } - { name: LEAK, ignore_errors: true, leak_check: true } runs-on: ubuntu-22.04 env: @@ -72,7 +72,7 @@ jobs: SANITIZER: - { name: UBSAN, ignore_errors: false } - { name: ASAN, ignore_errors: false } - - { name: TSAN, ignore_errors: true } + - { name: TSAN, ignore_errors: false } runs-on: macos-14 env: COMPILER: ${{ matrix.COMPILER }}