xo-indentlog: fix regression in utest for <..> printers

This commit is contained in:
Roland Conybeare 2024-04-29 23:03:00 -05:00
commit f47c5db866

View file

@ -63,12 +63,9 @@ namespace ut {
quoted_tcase("\"oh!\", she said", true, "\"\\\"oh!\\\", she said\""),
quoted_tcase("\"oh!\", she said", false, "\"\\\"oh!\\\", she said\""),
// special carveout for strings bracketed by <..>; assume already well-formed
quoted_tcase("<object printer output>", true, "<object printer output>"),
#if __GNUC__ >= 13 && __GNUC_MINOR__ >= 2
quoted_tcase("<object printer output>", false, "\"<object printer output>\""),
#else
quoted_tcase("<object printer output>", false, "\"<object printer output>\""),
#endif
quoted_tcase("<object printer output>", false, "<object printer output>"),
});
TEST_CASE("quoted", "[quoted]") {