Auto merge of #1433 - str4d:gtest-expected-failures, r=str4d
Add a make command for checking expected failures With this merged, we can add gtests prefixed with `DISABLED_`, and then configure Buildbot to run those tests but not require they pass in order to merge.
This commit is contained in:
@@ -36,3 +36,6 @@ zcash_gtest_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS) -static
|
|||||||
|
|
||||||
zcash-gtest_check: zcash-gtest FORCE
|
zcash-gtest_check: zcash-gtest FORCE
|
||||||
./zcash-gtest
|
./zcash-gtest
|
||||||
|
|
||||||
|
zcash-gtest-expected-failures: zcash-gtest FORCE
|
||||||
|
./zcash-gtest --gtest_filter=*DISABLED_* --gtest_also_run_disabled_tests
|
||||||
|
|||||||
@@ -3,3 +3,8 @@
|
|||||||
TEST(tautologies, seven_eq_seven) {
|
TEST(tautologies, seven_eq_seven) {
|
||||||
ASSERT_EQ(7, 7);
|
ASSERT_EQ(7, 7);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TEST(tautologies, DISABLED_ObviousFailure)
|
||||||
|
{
|
||||||
|
FAIL() << "This is expected";
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user