Skip to content

Commit

Permalink
[FOLD] zlib: show sizeof streams
Browse files Browse the repository at this point in the history
  • Loading branch information
vinniefalco committed Oct 25, 2016
1 parent 1be5585 commit b4107f8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/zlib/deflate_stream.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,10 @@ class deflate_stream_test : public beast::unit_test::suite
void
run() override
{
log <<
"sizeof(deflate_stream) == " <<
sizeof(deflate_stream) << std::endl;

testDeflate();
}
};
Expand Down
3 changes: 3 additions & 0 deletions test/zlib/inflate_stream.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,9 @@ class inflate_stream_test : public beast::unit_test::suite
void
run() override
{
log <<
"sizeof(inflate_stream) == " <<
sizeof(inflate_stream) << std::endl;
testInflate();
}
};
Expand Down

0 comments on commit b4107f8

Please sign in to comment.