mirror of
https://github.com/facebook/zstd.git
synced 2026-01-06 11:21:19 +03:00
Test Fewer Dictionary Sizes
This commit is contained in:
@@ -2948,8 +2948,8 @@ static int basicUnitTests(U32 const seed, double compressibility)
|
||||
|
||||
CHECK(cctx_params != NULL);
|
||||
|
||||
for (dictSize = CNBuffSize; dictSize; dictSize = dictSize >> 1) {
|
||||
for (cLevel = 4; cLevel < 12; cLevel++) {
|
||||
for (dictSize = CNBuffSize; dictSize; dictSize = dictSize >> 3) {
|
||||
for (cLevel = 4; cLevel < 13; cLevel++) {
|
||||
for (i = 0; i < 8; ++i) {
|
||||
ZSTD_dictAttachPref_e const attachPref = attachPrefs[i];
|
||||
int const enableDDS = enableDedicatedDictSearch[i];
|
||||
|
||||
Reference in New Issue
Block a user