test(read): increase the buffer size

This commit is contained in:
Raphael 2025-12-13 13:42:55 +01:00
parent c7f7e10e74
commit b2c1ad07c9
No known key found for this signature in database

View file

@ -6,7 +6,7 @@
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* 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);