Selaa lähdekoodia

Use GTEST_SKIP in leveldb:table_test

This replaces a usage of fprintf to stderr

PiperOrigin-RevId: 454620969
main
leveldb Team 2 vuotta sitten
committed by Victor Costan
vanhempi
commit
fff74f20ff
1 muutettua tiedostoa jossa 2 lisäystä ja 4 poistoa
  1. +2
    -4
      table/table_test.cc

+ 2
- 4
table/table_test.cc Näytä tiedosto

@ -791,10 +791,8 @@ static bool SnappyCompressionSupported() {
}
TEST(TableTest, ApproximateOffsetOfCompressed) {
if (!SnappyCompressionSupported()) {
std::fprintf(stderr, "skipping compression tests\n");
return;
}
if (!SnappyCompressionSupported())
GTEST_SKIP() << "skipping compression tests";
Random rnd(301);
TableConstructor c(BytewiseComparator());

Ladataan…
Peruuta
Tallenna