Fixed valgrind errors
This commit is contained in:
parent
d8c7c45ea0
commit
db1f0cddf3
@ -3232,7 +3232,7 @@ TEST(DBTest, MultiGetSimple) {
|
|||||||
keys[2] = "k3";
|
keys[2] = "k3";
|
||||||
keys[3] = "k4";
|
keys[3] = "k4";
|
||||||
keys[4] = "k5";
|
keys[4] = "k5";
|
||||||
keys[6] = "no_key";
|
keys[5] = "no_key";
|
||||||
|
|
||||||
std::vector<std::string> values(20,"Temporary data to be overwritten");
|
std::vector<std::string> values(20,"Temporary data to be overwritten");
|
||||||
|
|
||||||
|
@ -291,10 +291,9 @@ TEST(StringAppendOperatorTest,BIGRandomMixGetAppend) {
|
|||||||
TEST(StringAppendOperatorTest,PersistentVariousKeys) {
|
TEST(StringAppendOperatorTest,PersistentVariousKeys) {
|
||||||
DestroyDB(kDbName, Options()); // Start this test with a fresh DB
|
DestroyDB(kDbName, Options()); // Start this test with a fresh DB
|
||||||
|
|
||||||
StringAppendOperator append_op('\n');
|
|
||||||
|
|
||||||
// Perform the following operations in limited scope
|
// Perform the following operations in limited scope
|
||||||
{
|
{
|
||||||
|
StringAppendOperator append_op('\n');
|
||||||
auto db = OpenDb(&append_op);
|
auto db = OpenDb(&append_op);
|
||||||
StringLists slists(db);
|
StringLists slists(db);
|
||||||
|
|
||||||
@ -318,6 +317,7 @@ TEST(StringAppendOperatorTest,PersistentVariousKeys) {
|
|||||||
|
|
||||||
// Reopen the database (the previous changes should persist / be remembered)
|
// Reopen the database (the previous changes should persist / be remembered)
|
||||||
{
|
{
|
||||||
|
StringAppendOperator append_op('\n');
|
||||||
auto db = OpenDb(&append_op);
|
auto db = OpenDb(&append_op);
|
||||||
StringLists slists(db);
|
StringLists slists(db);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user