From 67063ead6092657725d74b595a8763ebb0bdd659 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Thu, 19 Jan 2023 14:09:15 +0100 Subject: [PATCH] build: promote tsan ci to must-pass Refs: https://github.com/libuv/libuv/issues/3681 --- .github/workflows/sanitizer.yml | 5 +++-- tsansupp.txt | 2 ++ 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 tsansupp.txt 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