feat/stdout (#3)

* feat: disable standard output for tests

* fuck les fds

* patch some complation issues

* style: norm

* feat: timeout

* fix: patc more stuff

* fix: patch merge

* feat: more tests
This commit is contained in:
Erwann Lagouche
2026-01-25 16:43:39 +01:00
committed by GitHub
parent 442619f4cb
commit cf491b279d
30 changed files with 332 additions and 132 deletions

View File

@@ -6,7 +6,7 @@
/* By: elagouch <elagouch@student.42lyon.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2026/01/24 15:32:32 by elagouch #+# #+# */
/* Updated: 2026/01/24 16:34:12 by elagouch ### ########.fr */
/* Updated: 2026/01/25 15:13:57 by elagouch ### ########.fr */
/* */
/* ************************************************************************** */
@@ -18,9 +18,9 @@ int strlen_launcher(void)
size_t res;
testlist = NULL;
load_test(&testlist, "null", &test_null);
load_test(&testlist, "basic", &test_basic);
load_test(&testlist, "large", &test_large);
load_test(&testlist, "null", &test_null, 0);
load_test(&testlist, "basic", &test_basic, 0);
load_test(&testlist, "large", &test_large, 0);
res = launch_tests(testlist, "strlen");
clear_tests(&testlist);
return (res);