googlemock: Disable WhenDynamicCastToTest tests when RTTI is off
https://github.com/google/googletest/issues/610
This commit is contained in:
parent
7f4448f40b
commit
c8a1050704
|
@ -3179,6 +3179,8 @@ MATCHER_P(FieldIIs, inner_matcher, "") {
|
|||
return ExplainMatchResult(inner_matcher, arg.i, result_listener);
|
||||
}
|
||||
|
||||
#if GTEST_HAS_RTTI
|
||||
|
||||
TEST(WhenDynamicCastToTest, SameType) {
|
||||
Derived derived;
|
||||
derived.i = 4;
|
||||
|
@ -3236,12 +3238,8 @@ TEST(WhenDynamicCastToTest, AmbiguousCast) {
|
|||
|
||||
TEST(WhenDynamicCastToTest, Describe) {
|
||||
Matcher<Base*> matcher = WhenDynamicCastTo<Derived*>(Pointee(_));
|
||||
#if GTEST_HAS_RTTI
|
||||
const string prefix =
|
||||
"when dynamic_cast to " + internal::GetTypeName<Derived*>() + ", ";
|
||||
#else // GTEST_HAS_RTTI
|
||||
const string prefix = "when dynamic_cast, ";
|
||||
#endif // GTEST_HAS_RTTI
|
||||
EXPECT_EQ(prefix + "points to a value that is anything", Describe(matcher));
|
||||
EXPECT_EQ(prefix + "does not point to a value that is anything",
|
||||
DescribeNegation(matcher));
|
||||
|
@ -3275,6 +3273,8 @@ TEST(WhenDynamicCastToTest, BadReference) {
|
|||
EXPECT_THAT(as_base_ref, Not(WhenDynamicCastTo<const OtherDerived&>(_)));
|
||||
}
|
||||
|
||||
#endif // GTEST_HAS_RTTI
|
||||
|
||||
// Minimal const-propagating pointer.
|
||||
template <typename T>
|
||||
class ConstPropagatingPtr {
|
||||
|
|
Loading…
Reference in New Issue
Block a user