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
|
#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
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user