mirror of
https://github.com/ceph/ceph
synced 2025-03-06 00:10:04 +00:00
Merge pull request #5679 from wonzhq/store-test
test: disable newstore test until it's merged Reviewed-by: Samuel Just <sjust@redhat.com>
This commit is contained in:
commit
46e7f36785
@ -55,13 +55,18 @@ public:
|
||||
string(GetParam()),
|
||||
string("store_test_temp_dir"),
|
||||
string("store_test_temp_journal"));
|
||||
if (!store_) {
|
||||
cerr << __func__ << ": objectstore type " << string(GetParam()) << " doesn't exist yet!" << std::endl;
|
||||
return;
|
||||
}
|
||||
store.reset(store_);
|
||||
EXPECT_EQ(store->mkfs(), 0);
|
||||
EXPECT_EQ(store->mount(), 0);
|
||||
}
|
||||
|
||||
virtual void TearDown() {
|
||||
store->umount();
|
||||
if (store)
|
||||
store->umount();
|
||||
}
|
||||
};
|
||||
|
||||
@ -2413,7 +2418,7 @@ TEST_P(StoreTest, SetAllocHint) {
|
||||
INSTANTIATE_TEST_CASE_P(
|
||||
ObjectStore,
|
||||
StoreTest,
|
||||
::testing::Values("memstore", "filestore", "keyvaluestore", "newstore"));
|
||||
::testing::Values("memstore", "filestore", "keyvaluestore"/*, "newstore" */));
|
||||
|
||||
#else
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user