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>
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;