remove reminder in tests and remove useless file

This commit is contained in:
2025-04-12 19:12:45 +02:00
parent 2adeac70ce
commit 5d98a06bf4
2 changed files with 1 additions and 10 deletions

View File

@ -1,7 +0,0 @@
#include <string.h>
#include <stdio.h>
int main(void)
{
printf("%d\n", strcmp("coucou", "c"));
}

4
test.c
View File

@ -6,7 +6,7 @@
/* By: tomoron <tomoron@student.42angouleme.fr> +#+ +:+ +#+ */ /* By: tomoron <tomoron@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */ /* +#+#+#+#+#+ +#+ */
/* Created: 2025/03/29 19:53:58 by tomoron #+# #+# */ /* Created: 2025/03/29 19:53:58 by tomoron #+# #+# */
/* Updated: 2025/04/12 18:33:43 by tomoron ### ########.fr */ /* Updated: 2025/04/12 19:08:05 by tomoron ### ########.fr */
/* */ /* */
/* ************************************************************************** */ /* ************************************************************************** */
@ -295,6 +295,4 @@ int main(void)
FNC_TEST("ft_list_sort", test_list_sort()); FNC_TEST("ft_list_sort", test_list_sort());
printf("\n\n"); printf("\n\n");
FNC_TEST("ft_list_sort", test_list_remove_if()); FNC_TEST("ft_list_sort", test_list_remove_if());
printf("\n\n");
FNC_TEST("check valgrind", 1);
} }