Skip to content

Commit

Permalink
Enable reporting TSAN errors (#4539)
Browse files Browse the repository at this point in the history
  • Loading branch information
pwojcikdev committed Apr 9, 2024
1 parent ed38567 commit 68496af
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/code_sanitizers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,12 @@ 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 }
exclude:
# Bug when running with TSAN: "ThreadSanitizer: CHECK failed: sanitizer_deadlock_detector"
- BACKEND: rocksdb
SANITIZER: { name: TSAN }
runs-on: ubuntu-22.04
env:
COMPILER: ${{ matrix.COMPILER }}
Expand Down Expand Up @@ -72,7 +76,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 }}
Expand Down

0 comments on commit 68496af

Please sign in to comment.