Merge #7536: test: test leading spaces for ParseHex
f31b6b8 test: test leading space for ParseHex (Wladimir J. van der Laan)
This commit is contained in:
parent
cd7a2e2b5a
commit
ee5f8d2115
@ -60,6 +60,10 @@ BOOST_AUTO_TEST_CASE(util_ParseHex)
|
|||||||
result = ParseHex("12 34 56 78");
|
result = ParseHex("12 34 56 78");
|
||||||
BOOST_CHECK(result.size() == 4 && result[0] == 0x12 && result[1] == 0x34 && result[2] == 0x56 && result[3] == 0x78);
|
BOOST_CHECK(result.size() == 4 && result[0] == 0x12 && result[1] == 0x34 && result[2] == 0x56 && result[3] == 0x78);
|
||||||
|
|
||||||
|
// Leading space must be supported (used in CDBEnv::Salvage)
|
||||||
|
result = ParseHex(" 89 34 56 78");
|
||||||
|
BOOST_CHECK(result.size() == 4 && result[0] == 0x89 && result[1] == 0x34 && result[2] == 0x56 && result[3] == 0x78);
|
||||||
|
|
||||||
// Stop parsing at invalid value
|
// Stop parsing at invalid value
|
||||||
result = ParseHex("1234 invalid 1234");
|
result = ParseHex("1234 invalid 1234");
|
||||||
BOOST_CHECK(result.size() == 2 && result[0] == 0x12 && result[1] == 0x34);
|
BOOST_CHECK(result.size() == 2 && result[0] == 0x12 && result[1] == 0x34);
|
||||||
|
@ -193,9 +193,9 @@ bool CDBEnv::Salvage(const std::string& strFile, bool fAggressive, std::vector<C
|
|||||||
// Format of bdb dump is ascii lines:
|
// Format of bdb dump is ascii lines:
|
||||||
// header lines...
|
// header lines...
|
||||||
// HEADER=END
|
// HEADER=END
|
||||||
// hexadecimal key
|
// hexadecimal key
|
||||||
// hexadecimal value
|
// hexadecimal value
|
||||||
// ... repeated
|
// ... repeated
|
||||||
// DATA=END
|
// DATA=END
|
||||||
|
|
||||||
string strLine;
|
string strLine;
|
||||||
|
Loading…
Reference in New Issue
Block a user