mirror of
https://github.com/boostorg/beast.git
synced 2025-07-30 12:57:31 +02:00
Less compression on websocket test
This commit is contained in:
@ -8,6 +8,7 @@ Version 96:
|
||||
* Update boostorg links
|
||||
* Add bench-zlib
|
||||
* Faster zlib tests
|
||||
* Less compression on websocket test
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
|
@ -1945,19 +1945,21 @@ public:
|
||||
pmd.server_enable = false;
|
||||
doClientTests(pmd);
|
||||
|
||||
#if ! BOOST_BEAST_NO_SLOW_TESTS
|
||||
pmd.client_enable = true;
|
||||
pmd.server_enable = true;
|
||||
pmd.client_max_window_bits = 10;
|
||||
pmd.client_no_context_takeover = false;
|
||||
pmd.compLevel = 1;
|
||||
pmd.memLevel = 1;
|
||||
doClientTests(pmd);
|
||||
|
||||
pmd.client_enable = true;
|
||||
pmd.server_enable = true;
|
||||
pmd.client_max_window_bits = 10;
|
||||
pmd.client_no_context_takeover = true;
|
||||
pmd.compLevel = 1;
|
||||
pmd.memLevel = 1;
|
||||
doClientTests(pmd);
|
||||
#endif
|
||||
}
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user