Temporarily disable unstable tests in memory_test.cc
Summary: memory_test.cc has some tests that are not unstable but hard to reproduce, and the cause is the test itself not the code. Temporarily disable the tests until we have a good fix. Test Plan: memory_test Reviewers: sdong, anthony, IslamAbdelRahman, rven, kradhakrishnan Subscribers: dhruba, leveldb Differential Revision: https://reviews.facebook.net/D54009
This commit is contained in:
parent
08a78b6b44
commit
2a04268be3
@ -93,7 +93,7 @@ class MemoryTest : public testing::Test {
|
|||||||
std::vector<uint64_t> usage_history_[MemoryUtil::kNumUsageTypes];
|
std::vector<uint64_t> usage_history_[MemoryUtil::kNumUsageTypes];
|
||||||
};
|
};
|
||||||
|
|
||||||
TEST_F(MemoryTest, SharedBlockCacheTotal) {
|
TEST_F(MemoryTest, DISABLED_SharedBlockCacheTotal) {
|
||||||
std::vector<DB*> dbs;
|
std::vector<DB*> dbs;
|
||||||
std::vector<uint64_t> usage_by_type;
|
std::vector<uint64_t> usage_by_type;
|
||||||
const int kNumDBs = 10;
|
const int kNumDBs = 10;
|
||||||
@ -144,7 +144,7 @@ TEST_F(MemoryTest, SharedBlockCacheTotal) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST_F(MemoryTest, MemTableAndTableReadersTotal) {
|
TEST_F(MemoryTest, DISABLED_MemTableAndTableReadersTotal) {
|
||||||
std::vector<DB*> dbs;
|
std::vector<DB*> dbs;
|
||||||
std::vector<uint64_t> usage_by_type;
|
std::vector<uint64_t> usage_by_type;
|
||||||
std::vector<std::vector<ColumnFamilyHandle*>> vec_handles;
|
std::vector<std::vector<ColumnFamilyHandle*>> vec_handles;
|
||||||
|
Loading…
Reference in New Issue
Block a user