Reduce default write size by half
authorNikolaus Rath <Nikolaus@rath.org>
Sat, 1 Jul 2023 13:12:44 +0000 (14:12 +0100)
committerNikolaus Rath <Nikolaus@rath.org>
Sat, 1 Jul 2023 13:12:44 +0000 (14:12 +0100)
Hopefully this will reduce test flakiness on CI.

test/test_write_cache.c

index e96a88240743505905f1c14046e2bd39fd94f2b2..e0bdeb9346a86ed7f7b5162aa55093f400318072 100644 (file)
@@ -38,7 +38,7 @@ struct options {
     int delay_ms;
 } options = {
     .writeback = 0,
-    .data_size = 4096,
+    .data_size = 2048,
     .delay_ms = 0,
 };