0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-08 10:31:50 -05:00

lint: Make known violations more specific in lint-locale-dependence

This commit is contained in:
Dimitri 2022-04-20 17:49:58 +02:00
parent 229917d3d4
commit 3043a1bc9d

View file

@ -46,9 +46,10 @@ from subprocess import check_output, CalledProcessError
KNOWN_VIOLATIONS = [
"src/dbwrapper.cpp:.*vsnprintf",
"src/test/dbwrapper_tests.cpp:.*snprintf",
"src/test/fuzz/locale.cpp",
"src/test/fuzz/string.cpp",
"src/test/util_tests.cpp"
"src/test/fuzz/locale.cpp:.*setlocale",
"src/test/fuzz/string.cpp:.*strtol",
"src/test/fuzz/string.cpp:.*strtoul",
"src/test/util_tests.cpp:.*strtoll"
]
REGEXP_EXTERNAL_DEPENDENCIES_EXCLUSIONS = [