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:
parent
5ba3297d0d
commit
1b7ea8ce81
@ -8,8 +8,8 @@
|
||||
#ifndef GFLAGS
|
||||
#include <cstdio>
|
||||
int main() {
|
||||
fprintf(stderr, "Please install gflags to run rocksdb tools\n");
|
||||
return 1;
|
||||
fprintf(stderr, "Please install gflags to run this test... Skipping...\n");
|
||||
return 0;
|
||||
}
|
||||
#else
|
||||
|
||||
|
@ -10,8 +10,8 @@
|
||||
#ifndef GFLAGS
|
||||
#include <cstdio>
|
||||
int main() {
|
||||
fprintf(stderr, "Please install gflags to run rocksdb tools\n");
|
||||
return 1;
|
||||
fprintf(stderr, "Please install gflags to run this test... Skipping...\n");
|
||||
return 0;
|
||||
}
|
||||
#else
|
||||
|
||||
|
@ -6,8 +6,8 @@
|
||||
#ifndef GFLAGS
|
||||
#include <cstdio>
|
||||
int main() {
|
||||
fprintf(stderr, "Please install gflags to run rocksdb tools\n");
|
||||
return 1;
|
||||
fprintf(stderr, "Please install gflags to run this test... Skipping...\n");
|
||||
return 0;
|
||||
}
|
||||
#else
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user