From 8521c9e02b2bcb9f6437a111cba3f395236f8e22 Mon Sep 17 00:00:00 2001 From: Charles Date: Thu, 13 Feb 2020 03:13:57 +0100 Subject: Added ft_memmem and ft_memset_pattern4, not tested --- test/include/helper/helper_segfault.h | 1 + test/libft_test | Bin 53772 -> 0 bytes 2 files changed, 1 insertion(+) delete mode 100755 test/libft_test (limited to 'test') diff --git a/test/include/helper/helper_segfault.h b/test/include/helper/helper_segfault.h index 99351af..d638a70 100644 --- a/test/include/helper/helper_segfault.h +++ b/test/include/helper/helper_segfault.h @@ -4,6 +4,7 @@ extern int helper_segfault_pid; # define TEST_ASSERT_SEGFAULT(code) do { \ + fflush(stdout); \ if ((helper_segfault_pid = fork()) < 0) \ exit(EXIT_FAILURE); \ if (helper_segfault_pid == 0) \ diff --git a/test/libft_test b/test/libft_test deleted file mode 100755 index 3af5a2f..0000000 Binary files a/test/libft_test and /dev/null differ -- cgit