Skip to content

Commit

Permalink
fix cache size in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dangfan committed Nov 5, 2023
1 parent 360a162 commit 28c580f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/test_key.c
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ int main() {
cfg.block_size = 512;
cfg.block_count = 256;
cfg.block_cycles = 50000;
cfg.cache_size = 256;
cfg.cache_size = 512;
cfg.lookahead_size = 32;
lfs_filebd_create(&cfg, "lfs-root", &bdcfg);

Expand Down
2 changes: 1 addition & 1 deletion test/test_oath.c
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ int main() {
cfg.block_size = 512;
cfg.block_count = 256;
cfg.block_cycles = 50000;
cfg.cache_size = 256;
cfg.cache_size = 512;
cfg.lookahead_size = 32;
lfs_filebd_create(&cfg, "lfs-root", &bdcfg);

Expand Down
2 changes: 1 addition & 1 deletion test/test_openpgp.c
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ int main() {
cfg.block_size = 512;
cfg.block_count = 256;
cfg.block_cycles = 50000;
cfg.cache_size = 256;
cfg.cache_size = 512;
cfg.lookahead_size = 32;
lfs_filebd_create(&cfg, "lfs-root", &bdcfg);

Expand Down

0 comments on commit 28c580f

Please sign in to comment.