aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorNikolaus Rath <Nikolaus@rath.org>2023-07-01 14:12:44 +0100
committerNikolaus Rath <Nikolaus@rath.org>2023-07-01 14:12:44 +0100
commit1cb6e17e0c83b38729b5d71bfc8d7726dc3dbb61 (patch)
treeb5caaa5839a7ce3d5ad6093f331f8823afbbb852 /test
parentb51f69f620968a2273735382493a21591c01212d (diff)
downloadlibfuse-1cb6e17e0c83b38729b5d71bfc8d7726dc3dbb61.tar.gz
Reduce default write size by half
Hopefully this will reduce test flakiness on CI.
Diffstat (limited to 'test')
-rw-r--r--test/test_write_cache.c2
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,
};