Browse Source

Fix config file parsing

pull/1151/head
Ilya Taranov 1 year ago
parent
commit
d04e04e89a
  1. 7
      src/branches.cpp
  2. 3
      tests/tests.cpp

7
src/branches.cpp

@ -80,11 +80,14 @@ namespace l
uint64_t offset;
offset = s_.find_first_not_of("+<>-=");
if (offset == std::string::npos) {
return;
}
if(offset > 1)
offset = 2;
*instr_ = s_.substr(0,offset);
if(offset != std::string::npos)
*values_ = s_.substr(offset);
*values_ = s_.substr(offset);
}
static

3
tests/tests.cpp

@ -86,6 +86,9 @@ test_config_branches()
TEST_CHECK(b->minfreespace() == 1234);
TEST_CHECK(b.to_string() == "");
// Parse initial value for branch
TEST_CHECK(b.from_string(b.to_string()) == 0);
bcp0 = b;
TEST_CHECK(b.from_string("/foo/bar") == 0);
TEST_CHECK(b.to_string() == "/foo/bar=RW");

Loading…
Cancel
Save