Skip to content

Commit

Permalink
Create tsan_suppressions.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
kinokrt authored Dec 7, 2023
1 parent ca63d4d commit ad2059b
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/tsan_suppressions.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Clang 13, 15, 16, 17 reports false positive data race in this function:
#
# ctype<char>::narrow(char_type __c, char __dfault) const
# {
# if (_M_narrow[static_cast<unsigned char>(__c)])
# return _M_narrow[static_cast<unsigned char>(__c)];
# const char __t = do_narrow(__c, __dfault);
# if (__t != __dfault)
# _M_narrow[static_cast<unsigned char>(__c)] = __t;
# return __t;
# }
#
race:*/locale_facets.h

0 comments on commit ad2059b

Please sign in to comment.