mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-25 02:33:24 -03:00
tests: Add std::to_string to list of locale dependent functions
This commit is contained in:
parent
b931f61b9a
commit
1f0adb3dac
1 changed files with 17 additions and 0 deletions
|
@ -3,15 +3,30 @@
|
|||
export LC_ALL=C
|
||||
KNOWN_VIOLATIONS=(
|
||||
"src/bitcoin-tx.cpp.*stoul"
|
||||
"src/bitcoin-tx.cpp.*std::to_string"
|
||||
"src/bitcoin-tx.cpp.*trim_right"
|
||||
"src/dbwrapper.cpp.*stoul"
|
||||
"src/dbwrapper.cpp:.*vsnprintf"
|
||||
"src/httprpc.cpp.*trim"
|
||||
"src/init.cpp:.*atoi"
|
||||
"src/qt/optionsmodel.cpp.*std::to_string"
|
||||
"src/qt/rpcconsole.cpp:.*atoi"
|
||||
"src/rest.cpp:.*strtol"
|
||||
"src/rpc/net.cpp.*std::to_string"
|
||||
"src/rpc/rawtransaction.cpp.*std::to_string"
|
||||
"src/rpc/util.cpp.*std::to_string"
|
||||
"src/test/addrman_tests.cpp.*std::to_string"
|
||||
"src/test/blockchain_tests.cpp.*std::to_string"
|
||||
"src/test/dbwrapper_tests.cpp:.*snprintf"
|
||||
"src/test/denialofservice_tests.cpp.*std::to_string"
|
||||
"src/test/fuzz/parse_numbers.cpp:.*atoi"
|
||||
"src/test/key_tests.cpp.*std::to_string"
|
||||
"src/test/net_tests.cpp.*std::to_string"
|
||||
"src/test/settings_tests.cpp.*std::to_string"
|
||||
"src/test/timedata_tests.cpp.*std::to_string"
|
||||
"src/test/util/setup_common.cpp.*std::to_string"
|
||||
"src/test/util_tests.cpp.*std::to_string"
|
||||
"src/test/util_threadnames_tests.cpp.*std::to_string"
|
||||
"src/torcontrol.cpp:.*atoi"
|
||||
"src/torcontrol.cpp:.*strtol"
|
||||
"src/util/strencodings.cpp:.*atoi"
|
||||
|
@ -19,6 +34,7 @@ KNOWN_VIOLATIONS=(
|
|||
"src/util/strencodings.cpp:.*strtoul"
|
||||
"src/util/strencodings.h:.*atoi"
|
||||
"src/util/system.cpp:.*atoi"
|
||||
"src/wallet/scriptpubkeyman.cpp.*std::to_string"
|
||||
)
|
||||
|
||||
REGEXP_IGNORE_EXTERNAL_DEPENDENCIES="^src/(crypto/ctaes/|leveldb/|secp256k1/|tinyformat.h|univalue/)"
|
||||
|
@ -93,6 +109,7 @@ LOCALE_DEPENDENT_FUNCTIONS=(
|
|||
snprintf
|
||||
sprintf
|
||||
sscanf
|
||||
std::to_string
|
||||
stod
|
||||
stof
|
||||
stoi
|
||||
|
|
Loading…
Add table
Reference in a new issue