mirror of https://github.com/facebook/rocksdb.git
Change GTEST_SKIP to BYPASS for MemoryAllocatorTest (#9340)
Summary: Pull Request resolved: https://github.com/facebook/rocksdb/pull/9340 Reviewed By: riversand963 Differential Revision: D33344152 Pulled By: mrambacher fbshipit-source-id: 283637625b86c33497571c5f52cac3ddf910b6f3
This commit is contained in:
parent
26a238f5b7
commit
0a563ae278
|
@ -141,7 +141,7 @@ TEST_F(CreateMemoryAllocatorTest, JemallocOptionsTest) {
|
|||
Status s = MemoryAllocator::CreateFromString(config_options_, id, &allocator);
|
||||
if (!JemallocNodumpAllocator::IsSupported()) {
|
||||
ASSERT_TRUE(s.IsNotSupported());
|
||||
ROCKSDB_GTEST_SKIP("JEMALLOC not supported");
|
||||
ROCKSDB_GTEST_BYPASS("JEMALLOC not supported");
|
||||
return;
|
||||
}
|
||||
ASSERT_OK(s);
|
||||
|
@ -193,7 +193,7 @@ TEST_F(CreateMemoryAllocatorTest, NewJemallocNodumpAllocator) {
|
|||
std::string msg;
|
||||
if (!JemallocNodumpAllocator::IsSupported(&msg)) {
|
||||
ASSERT_TRUE(s.IsNotSupported());
|
||||
ROCKSDB_GTEST_SKIP("JEMALLOC not supported");
|
||||
ROCKSDB_GTEST_BYPASS("JEMALLOC not supported");
|
||||
return;
|
||||
}
|
||||
ASSERT_NOK(s); // Invalid options
|
||||
|
|
Loading…
Reference in New Issue