-
Hi, the previously reported segmentation fault that occurs when running Also, I'm currently working on the To resolve these issues, could you please walk me through the latest version of the workaround as easily and in as much detail as possible? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi @kugorang , You're right, the segmentation fault issue was only resolved for the libft tests using war-machine. The main problem was related to the use of fsanitize, which seems to have issues in Docker environments due to insufficient permissions to communicate with the host API. This results in segmentation faults. The best solution here is to remove fsanitize entirely and either replace it with valgrind or run the tests without any sanitizers. Regarding your ft_printf issue, I would recommend testing each framework separately rather than running everything through Francinette. Some testers seem to have inconsistencies... |
Beta Was this translation helpful? Give feedback.
Hi @kugorang ,
You're right, the segmentation fault issue was only resolved for the libft tests using war-machine. The main problem was related to the use of fsanitize, which seems to have issues in Docker environments due to insufficient permissions to communicate with the host API. This results in segmentation faults.
The best solution here is to remove fsanitize entirely and either replace it with valgrind or run the tests without any sanitizers.
Regarding your ft_printf issue, I would recommend testing each framework separately rather than running everything through Francinette. Some testers seem to have inconsistencies...