From 64b7d55ed56c8696bc5580c6ca73e1ce4ebfab50 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Sun, 31 Jan 2021 02:35:26 +0100 Subject: Removing heapsort tests --- test/src/main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'test/src/main.c') diff --git a/test/src/main.c b/test/src/main.c index 357e02e..75484de 100644 --- a/test/src/main.c +++ b/test/src/main.c @@ -1,5 +1,7 @@ #include "libft_test.h" +int helper_segfault_pid; + static void run_all_test(void) { // ctype @@ -47,7 +49,6 @@ static void run_all_test(void) // algo RUN_TEST_GROUP(ft_bsearch); RUN_TEST_GROUP(ft_compar_int); - RUN_TEST_GROUP(ft_heapsort); RUN_TEST_GROUP(ft_is_set); RUN_TEST_GROUP(ft_lfind); RUN_TEST_GROUP(ft_lsearch); -- cgit