If certain tests are smr=true, the test
will be skipped with GTEST_SKIP instead of
the original return message.
Signed-off-by: Laura Flores <lflores@redhat.com>
(cherry picked from commit
162e9adda610b3badb3da72b4fb7567e7426c7fb)
GTEST_SKIP() << "not bluestore or bluestore_zero_block_detection=false, skipping";
}
if (smr) {
- cout << "SKIP" << std::endl;
- return;
+ GTEST_SKIP() << "smr, skipping";
}
size_t block_size = 65536;
GTEST_SKIP() << "not bluestore or bluestore_zero_block_detection=false, skipping";
}
if (smr) {
- cout << "SKIP" << std::endl;
- return;
+ GTEST_SKIP() << "smr, skipping";
}
size_t block_size = 4096;