From b2c1ad07c9beb350c2c8925461f7be4b9951c854 Mon Sep 17 00:00:00 2001 From: Raphael Date: Sat, 13 Dec 2025 13:42:55 +0100 Subject: [PATCH] test(read): increase the buffer size --- test/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/main.c b/test/main.c index c40690a..24cdb90 100644 --- a/test/main.c +++ b/test/main.c @@ -6,7 +6,7 @@ /* By: rparodi +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/12/12 14:02:17 by rparodi #+# #+# */ -/* Updated: 2025/12/13 13:30:29 by rparodi ### ########.fr */ +/* Updated: 2025/12/13 13:41:58 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ @@ -171,8 +171,8 @@ static void _test_read(void) int original, homemade; int err_original, err_homemade; int test_file; - char buf_orig[100]; - char buf_home[100]; + char buf_orig[8192]; + char buf_home[8192]; printf("\n%sTesting '%sft_read%s'%s\n", CLR_YELLOW, CLR_BLUE, CLR_YELLOW, RESET);