From 81a61d75dcfce3e9ff9974447eefca2441705bb6 Mon Sep 17 00:00:00 2001 From: Igor Canadi Date: Tue, 15 Sep 2015 22:59:53 -0700 Subject: [PATCH] Skipped tests shouldn't be failures [part 2] Summary: Missed one file in the previous commit Test Plan: compiles Reviewers: sdong Subscribers: dhruba, leveldb Differential Revision: https://reviews.facebook.net/D47055 --- table/cuckoo_table_reader_test.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/table/cuckoo_table_reader_test.cc b/table/cuckoo_table_reader_test.cc index c4a3d5007..f10fcc571 100644 --- a/table/cuckoo_table_reader_test.cc +++ b/table/cuckoo_table_reader_test.cc @@ -8,8 +8,8 @@ #ifndef GFLAGS #include int main() { - fprintf(stderr, "Please install gflags to run this test\n"); - return 1; + fprintf(stderr, "Please install gflags to run this test... Skipping...\n"); + return 0; } #else