Staging
v0.5.1
Revision d966095db01190a2196e31195ea6fa0c722aa732 authored by Junio C Hamano on 18 October 2019, 02:31:00 UTC, committed by Junio C Hamano on 18 October 2019, 02:40:50 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 90e0d16
Raw File
.tsan-suppressions
# Suppressions for ThreadSanitizer (tsan).
#
# This file is used by setting the environment variable TSAN_OPTIONS to, e.g.,
# "suppressions=$(pwd)/.tsan-suppressions". Observe that relative paths such as
# ".tsan-suppressions" might not work.

# A static variable is written to racily, but we always write the same value, so
# in practice it (hopefully!) doesn't matter.
race:^want_color$
race:^transfer_debug$
back to top