Skip to content

Commit f8304d7

Browse files
Abseil Teamderekmauro
Abseil Team
authored andcommitted
Googletest export
Add support for printing incomplete types in the universal printer. PiperOrigin-RevId: 350154637
1 parent 95a9bdd commit f8304d7

File tree

2 files changed

+19
-5
lines changed

2 files changed

+19
-5
lines changed

googletest/include/gtest/gtest-printers.h

+12-5
Original file line numberDiff line numberDiff line change
@@ -261,16 +261,23 @@ struct ConvertibleToStringViewPrinter {
261261
GTEST_API_ void PrintBytesInObjectTo(const unsigned char* obj_bytes,
262262
size_t count,
263263
::std::ostream* os);
264-
struct FallbackPrinter {
265-
template <typename T>
264+
struct RawBytesPrinter {
265+
// SFINAE on `sizeof` to make sure we have a complete type.
266+
template <typename T, size_t = sizeof(T)>
266267
static void PrintValue(const T& value, ::std::ostream* os) {
267268
PrintBytesInObjectTo(
268-
static_cast<const unsigned char*>(
269-
reinterpret_cast<const void*>(std::addressof(value))),
269+
reinterpret_cast<const unsigned char*>(std::addressof(value)),
270270
sizeof(value), os);
271271
}
272272
};
273273

274+
struct FallbackPrinter {
275+
template <typename T>
276+
static void PrintValue(const T&, ::std::ostream* os) {
277+
*os << "(incomplete type)";
278+
}
279+
};
280+
274281
// Try every printer in order and return the first one that works.
275282
template <typename T, typename E, typename Printer, typename... Printers>
276283
struct FindFirstPrinter : FindFirstPrinter<T, E, Printers...> {};
@@ -297,7 +304,7 @@ void PrintWithFallback(const T& value, ::std::ostream* os) {
297304
T, void, ContainerPrinter, FunctionPointerPrinter, PointerPrinter,
298305
internal_stream_operator_without_lexical_name_lookup::StreamPrinter,
299306
ProtobufPrinter, ConvertibleToIntegerPrinter,
300-
ConvertibleToStringViewPrinter, FallbackPrinter>::type;
307+
ConvertibleToStringViewPrinter, RawBytesPrinter, FallbackPrinter>::type;
301308
Printer::PrintValue(value, os);
302309
}
303310

googletest/test/googletest-printers-test.cc

+7
Original file line numberDiff line numberDiff line change
@@ -1695,6 +1695,13 @@ TEST(UniversalPrintTest, WorksForCharArray) {
16951695
EXPECT_EQ("\"\\\"Line\\0 1\\\"\\nLine 2\"", ss2.str());
16961696
}
16971697

1698+
TEST(UniversalPrintTest, IncompleteType) {
1699+
struct Incomplete;
1700+
char some_object = 0;
1701+
EXPECT_EQ("(incomplete type)",
1702+
PrintToString(reinterpret_cast<Incomplete&>(some_object)));
1703+
}
1704+
16981705
TEST(UniversalTersePrintTupleFieldsToStringsTestWithStd, PrintsEmptyTuple) {
16991706
Strings result = UniversalTersePrintTupleFieldsToStrings(::std::make_tuple());
17001707
EXPECT_EQ(0u, result.size());

0 commit comments

Comments
 (0)