diff options
author | Nikolaus Rath <Nikolaus@rath.org> | 2023-07-01 14:12:44 +0100 |
---|---|---|
committer | Nikolaus Rath <Nikolaus@rath.org> | 2023-07-01 14:12:44 +0100 |
commit | 1cb6e17e0c83b38729b5d71bfc8d7726dc3dbb61 (patch) | |
tree | b5caaa5839a7ce3d5ad6093f331f8823afbbb852 | |
parent | b51f69f620968a2273735382493a21591c01212d (diff) | |
download | libfuse-1cb6e17e0c83b38729b5d71bfc8d7726dc3dbb61.tar.gz |
Reduce default write size by half
Hopefully this will reduce test flakiness on CI.
-rw-r--r-- | test/test_write_cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_write_cache.c b/test/test_write_cache.c index e96a882..e0bdeb9 100644 --- a/test/test_write_cache.c +++ b/test/test_write_cache.c @@ -38,7 +38,7 @@ struct options { int delay_ms; } options = { .writeback = 0, - .data_size = 4096, + .data_size = 2048, .delay_ms = 0, }; |