Staging
v0.5.1
Revision 53f9a3e157dbbc901a02ac2c73346d375e24978c authored by Junio C Hamano on 21 June 2018, 17:00:06 UTC, committed by Junio C Hamano on 21 June 2018, 17:00:06 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 1fb9df7
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