tests: don't split an empty string
This commit is contained in:
parent
00522cd45b
commit
a94496fbb6
1 changed files with 2 additions and 1 deletions
|
@ -16,7 +16,8 @@ BOOST_AUTO_TEST_SUITE(getarg_tests)
|
|||
static void ResetArgs(const std::string& strArg)
|
||||
{
|
||||
std::vector<std::string> vecArg;
|
||||
boost::split(vecArg, strArg, boost::is_space(), boost::token_compress_on);
|
||||
if (strArg.size())
|
||||
boost::split(vecArg, strArg, boost::is_space(), boost::token_compress_on);
|
||||
|
||||
// Insert dummy executable name:
|
||||
vecArg.insert(vecArg.begin(), "testbitcoin");
|
||||
|
|
Loading…
Reference in a new issue