Remove superfluous log messages from tests

This commit is contained in:
Mohammad Nejati
2025-05-22 17:18:06 +00:00
committed by Mohammad Nejati
parent 07cc9a20bc
commit 916dcf8eb3
4 changed files with 0 additions and 13 deletions

View File

@ -139,7 +139,6 @@ public:
void
run() override
{
log << "sizeof(decorator)==" << sizeof(decorator) << "\n";
testDecorator();
}
};

View File

@ -189,11 +189,6 @@ public:
stream<test::stream&>>::value);
#endif
log << "sizeof(websocket::stream) == " <<
sizeof(websocket::stream<test::stream&>) << std::endl;
log << "sizeof(websocket::stream::impl_type) == " <<
sizeof(websocket::stream<test::stream&>::impl_type) << std::endl;
testOptions();
testJavadoc();
}

View File

@ -638,10 +638,6 @@ public:
void
run() override
{
log <<
"sizeof(deflate_stream) == " <<
sizeof(deflate_stream) << std::endl;
testDeflate(zlib_compressor);
testDeflate(beast_compressor);
testInvalidSettings(zlib_compressor);

View File

@ -637,9 +637,6 @@ public:
void
run() override
{
log <<
"sizeof(inflate_stream) == " <<
sizeof(inflate_stream) << std::endl;
testInflate(zlib_decompressor);
testInflate(beast_decompressor);
testInflateErrors(zlib_decompressor);