summaryrefslogtreecommitdiff
path: root/deps/uv/test/test-tcp-writealot.c
diff options
context:
space:
mode:
Diffstat (limited to 'deps/uv/test/test-tcp-writealot.c')
-rw-r--r--deps/uv/test/test-tcp-writealot.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/deps/uv/test/test-tcp-writealot.c b/deps/uv/test/test-tcp-writealot.c
index 6cfe2ebb18..7206fdc2f6 100644
--- a/deps/uv/test/test-tcp-writealot.c
+++ b/deps/uv/test/test-tcp-writealot.c
@@ -26,7 +26,11 @@
#define WRITES 3
+#if defined(__arm__) /* Decrease the chunks so the test passes on arm CI bots */
+#define CHUNKS_PER_WRITE 2048
+#else
#define CHUNKS_PER_WRITE 4096
+#endif
#define CHUNK_SIZE 10024 /* 10 kb */
#define TOTAL_BYTES (WRITES * CHUNKS_PER_WRITE * CHUNK_SIZE)