diff --git a/src/platform/unittest/DataPathTest.cpp b/src/platform/unittest/DataPathTest.cpp index 59855b52a7..f64d11e0c5 100644 --- a/src/platform/unittest/DataPathTest.cpp +++ b/src/platform/unittest/DataPathTest.cpp @@ -294,10 +294,8 @@ struct DataPathTest : public ::testing::TestWithParam ASSERT_EQ(0, memcmp(RecvData->Buffer, ExpectedData, ExpectedDataSize)); if (RecvContext->TtlSupported) { - printf("!!!!!!!!!!!!!!!!!!!Datapathtest: TTL feature supported!!!!!!!!!!!!!!!!!!!\n"); ASSERT_TRUE(RecvData->HopLimitTTL > 0); } else { - printf("!!!!!!!!!!!!!!!!!!!Datapathtest: TTL feature NOT supported!!!!!!!!!!!!!!!!!!!\n"); ASSERT_EQ(0, RecvData->HopLimitTTL); } diff --git a/src/test/lib/HandshakeTest.cpp b/src/test/lib/HandshakeTest.cpp index 76930126fa..edb6e714d8 100644 --- a/src/test/lib/HandshakeTest.cpp +++ b/src/test/lib/HandshakeTest.cpp @@ -319,10 +319,8 @@ QuicTestConnect( // After handshake, check and see if we have cached the TTL of the handshake packet. if (QuitTestIsFeatureSupported(CXPLAT_DATAPATH_FEATURE_TTL)) { - printf("!!!!!!!!!!!!!!!!!!!HandshakeTest: TTL feature supported!!!!!!!!!!!!!!!!!!!\n"); TEST_TRUE(Client.GetStatistics().HandshakeHopLimitTTL > 0); } else { - printf("!!!!!!!!!!!!!!!!!!!HandshakeTest: TTL feature NOT supported!!!!!!!!!!!!!!!!!!!\n"); TEST_EQUAL(Client.GetStatistics().HandshakeHopLimitTTL, 0); }