fix: patch a libunit bug

This commit is contained in:
airone01
2026-01-24 16:51:06 +01:00
parent 88359c5262
commit 803127f57c
7 changed files with 42 additions and 10 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:16:24 by elagouch ### ########.fr */
/* Updated: 2026/01/24 16:47:43 by elagouch ### ########.fr */
/* */
/* ************************************************************************** */
@@ -19,8 +19,8 @@ int libunit_launcher(void) {
testlist = NULL;
load_test(&testlist, "successful", &test_ok);
load_test(&testlist, "unsuccessful", &test_ko);
load_test(&testlist, "sigsegv", &test_ko);
load_test(&testlist, "sigbus", &test_ko);
load_test(&testlist, "sigsegv", &test_sigsegv);
load_test(&testlist, "sigbus", &test_sigbus);
res = launch_tests(testlist, "libunit");
clear_tests(&testlist);