Less compression on websocket test

This commit is contained in:
Vinnie Falco
2017-07-31 18:48:22 -07:00
parent 7b90ff852d
commit 7b364af6e0
2 changed files with 5 additions and 2 deletions

View File

@ -8,6 +8,7 @@ Version 96:
* Update boostorg links
* Add bench-zlib
* Faster zlib tests
* Less compression on websocket test
--------------------------------------------------------------------------------

View File

@ -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
}
};