Commit bb633cdb authored by Gordon McShane's avatar Gordon McShane Committed by Harris Hancock

Skip test that relies on stringification in lite mode

Stringification depends on the dynamic API, which is unavailable in lite
mode.

Thanks to @kentonv for the wording.
parent 22c1b628
......@@ -1667,6 +1667,8 @@ TEST(Encoding, Embeds) {
checkTestMessage(reader.getRoot<TestAllTypes>());
}
#if !CAPNP_LITE
{
MallocMessageBuilder builder;
auto root = builder.getRoot<TestAllTypes>();
......@@ -1675,6 +1677,8 @@ TEST(Encoding, Embeds) {
EXPECT_EQ(kj::str(root, '\n').size(), text.size());
}
#endif // CAPNP_LITE
{
checkTestMessage(test::EMBEDDED_STRUCT);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment