mirror of
https://github.com/facebook/rocksdb.git
synced 2024-11-26 07:30:54 +00:00
Make stringappend_test runnable in ROCKSDB_LITE
Summary: Make stringappend_test runnable in ROCKSDB_LITE Test Plan: stringappend_test Reviewers: sdong, rven, anthony, kradhakrishnan, IslamAbdelRahman, igor Reviewed By: igor Subscribers: dhruba, leveldb Differential Revision: https://reviews.facebook.net/D40593
This commit is contained in:
parent
48da7a9cad
commit
62a8fd154a
|
@ -36,6 +36,7 @@ std::shared_ptr<DB> OpenNormalDb(char delim_char) {
|
|||
return std::shared_ptr<DB>(db);
|
||||
}
|
||||
|
||||
#ifndef ROCKSDB_LITE // TtlDb is not supported in Lite
|
||||
// Open a TtlDB with a non-associative StringAppendTESTOperator
|
||||
std::shared_ptr<DB> OpenTtlDb(char delim_char) {
|
||||
DBWithTTL* db;
|
||||
|
@ -45,6 +46,7 @@ std::shared_ptr<DB> OpenTtlDb(char delim_char) {
|
|||
EXPECT_OK(DBWithTTL::Open(options, kDbName, &db, 123456));
|
||||
return std::shared_ptr<DB>(db);
|
||||
}
|
||||
#endif // !ROCKSDB_LITE
|
||||
} // namespace
|
||||
|
||||
/// StringLists represents a set of string-lists, each with a key-index.
|
||||
|
@ -585,12 +587,14 @@ int main(int argc, char** argv) {
|
|||
result = RUN_ALL_TESTS();
|
||||
}
|
||||
|
||||
#ifndef ROCKSDB_LITE // TtlDb is not supported in Lite
|
||||
// Run with TTL
|
||||
{
|
||||
fprintf(stderr, "Running tests with ttl db and generic operator.\n");
|
||||
StringAppendOperatorTest::SetOpenDbFunction(&OpenTtlDb);
|
||||
result |= RUN_ALL_TESTS();
|
||||
}
|
||||
#endif // !ROCKSDB_LITE
|
||||
|
||||
return result;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue