aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2018-11-05 17:22:09 +0100
committerpracticalswift <practicalswift@users.noreply.github.com>2018-11-06 17:32:13 +0100
commit587924f0006d2eb9b8218b6abffe181bb9c27513 (patch)
treecbc0a07953fca542c34f6259787cd878eb266c81
parentc5fd143edb85d0c181e21a429f9e29d12a611831 (diff)
downloadbitcoin-587924f0006d2eb9b8218b6abffe181bb9c27513.tar.xz
Use IsSpace(...) instead of boost::is_space
-rw-r--r--src/test/getarg_tests.cpp2
-rwxr-xr-xtest/lint/lint-locale-dependence.sh5
2 files changed, 3 insertions, 4 deletions
diff --git a/src/test/getarg_tests.cpp b/src/test/getarg_tests.cpp
index 0432ede3e0..43e3cea0d9 100644
--- a/src/test/getarg_tests.cpp
+++ b/src/test/getarg_tests.cpp
@@ -17,7 +17,7 @@ static void ResetArgs(const std::string& strArg)
{
std::vector<std::string> vecArg;
if (strArg.size())
- boost::split(vecArg, strArg, boost::is_space(), boost::token_compress_on);
+ boost::split(vecArg, strArg, IsSpace, boost::token_compress_on);
// Insert dummy executable name:
vecArg.insert(vecArg.begin(), "testbitcoin");
diff --git a/test/lint/lint-locale-dependence.sh b/test/lint/lint-locale-dependence.sh
index 2765ebe5c7..c76e862ae2 100755
--- a/test/lint/lint-locale-dependence.sh
+++ b/test/lint/lint-locale-dependence.sh
@@ -12,15 +12,14 @@ KNOWN_VIOLATIONS=(
"src/qt/rpcconsole.cpp:.*atoi"
"src/rest.cpp:.*strtol"
"src/test/dbwrapper_tests.cpp:.*snprintf"
- "src/test/getarg_tests.cpp.*split"
"src/torcontrol.cpp:.*atoi"
"src/torcontrol.cpp:.*strtol"
- "src/util/system.cpp:.*atoi"
- "src/util/system.cpp:.*fprintf"
"src/util/strencodings.cpp:.*atoi"
"src/util/strencodings.cpp:.*strtol"
"src/util/strencodings.cpp:.*strtoul"
"src/util/strencodings.h:.*atoi"
+ "src/util/system.cpp:.*atoi"
+ "src/util/system.cpp:.*fprintf"
)
REGEXP_IGNORE_EXTERNAL_DEPENDENCIES="^src/(crypto/ctaes/|leveldb/|secp256k1/|tinyformat.h|univalue/)"