diff --git a/.github/workflows/sanitizer.yml b/.github/workflows/sanitizer.yml index 2ebb8e17..8173c822 100644 --- a/.github/workflows/sanitizer.yml +++ b/.github/workflows/sanitizer.yml @@ -47,9 +47,10 @@ jobs: (cd build-tsan && cmake .. -G Ninja -DBUILD_TESTING=ON -DTSAN=ON -DCMAKE_BUILD_TYPE=Release) cmake --build build-tsan - name: TSAN Test - continue-on-error: true # currently permit failures + # Note: path must be absolute because some tests chdir. + # TSan exits with an error when it can't find the file. run: | - ./build-tsan/uv_run_tests_a + env TSAN_OPTIONS="suppressions=$PWD/tsansupp.txt" ./build-tsan/uv_run_tests_a - name: UBSAN Build run: | diff --git a/tsansupp.txt b/tsansupp.txt new file mode 100644 index 00000000..bde40608 --- /dev/null +++ b/tsansupp.txt @@ -0,0 +1,2 @@ +# glibc reads `count` field unsynchronized, not a libuv bug +race:pthread_barrier_destroy