提交 1b7ea8ce 编写于 作者: I Igor Canadi

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
上级 5ba3297d
......@@ -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
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册