mirror of
https://github.com/boostorg/beast.git
synced 2025-07-29 20:37:31 +02:00
Remove superfluous log messages from tests
This commit is contained in:
committed by
Mohammad Nejati
parent
07cc9a20bc
commit
916dcf8eb3
@ -139,7 +139,6 @@ public:
|
|||||||
void
|
void
|
||||||
run() override
|
run() override
|
||||||
{
|
{
|
||||||
log << "sizeof(decorator)==" << sizeof(decorator) << "\n";
|
|
||||||
testDecorator();
|
testDecorator();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -189,11 +189,6 @@ public:
|
|||||||
stream<test::stream&>>::value);
|
stream<test::stream&>>::value);
|
||||||
#endif
|
#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();
|
testOptions();
|
||||||
testJavadoc();
|
testJavadoc();
|
||||||
}
|
}
|
||||||
|
@ -638,10 +638,6 @@ public:
|
|||||||
void
|
void
|
||||||
run() override
|
run() override
|
||||||
{
|
{
|
||||||
log <<
|
|
||||||
"sizeof(deflate_stream) == " <<
|
|
||||||
sizeof(deflate_stream) << std::endl;
|
|
||||||
|
|
||||||
testDeflate(zlib_compressor);
|
testDeflate(zlib_compressor);
|
||||||
testDeflate(beast_compressor);
|
testDeflate(beast_compressor);
|
||||||
testInvalidSettings(zlib_compressor);
|
testInvalidSettings(zlib_compressor);
|
||||||
|
@ -637,9 +637,6 @@ public:
|
|||||||
void
|
void
|
||||||
run() override
|
run() override
|
||||||
{
|
{
|
||||||
log <<
|
|
||||||
"sizeof(inflate_stream) == " <<
|
|
||||||
sizeof(inflate_stream) << std::endl;
|
|
||||||
testInflate(zlib_decompressor);
|
testInflate(zlib_decompressor);
|
||||||
testInflate(beast_decompressor);
|
testInflate(beast_decompressor);
|
||||||
testInflateErrors(zlib_decompressor);
|
testInflateErrors(zlib_decompressor);
|
||||||
|
Reference in New Issue
Block a user