Skipped tests shouldn't be failures

Summary: If we skip a test, we shouldn't mark `make check` as failure. This fixes travis CI test.

Test Plan: Travis CI

Reviewers: noetzli, sdong

Reviewed By: sdong

Subscribers: dhruba, leveldb

Differential Revision: https://reviews.facebook.net/D47031
This commit is contained in:
Igor Canadi 2015-09-15 18:10:36 -07:00
parent 5ba3297d0d
commit 1b7ea8ce81
3 changed files with 6 additions and 6 deletions

View File

@ -8,8 +8,8 @@
#ifndef GFLAGS #ifndef GFLAGS
#include <cstdio> #include <cstdio>
int main() { int main() {
fprintf(stderr, "Please install gflags to run rocksdb tools\n"); fprintf(stderr, "Please install gflags to run this test... Skipping...\n");
return 1; return 0;
} }
#else #else

View File

@ -10,8 +10,8 @@
#ifndef GFLAGS #ifndef GFLAGS
#include <cstdio> #include <cstdio>
int main() { int main() {
fprintf(stderr, "Please install gflags to run rocksdb tools\n"); fprintf(stderr, "Please install gflags to run this test... Skipping...\n");
return 1; return 0;
} }
#else #else

View File

@ -6,8 +6,8 @@
#ifndef GFLAGS #ifndef GFLAGS
#include <cstdio> #include <cstdio>
int main() { int main() {
fprintf(stderr, "Please install gflags to run rocksdb tools\n"); fprintf(stderr, "Please install gflags to run this test... Skipping...\n");
return 1; return 0;
} }
#else #else