wip: tests: show more debug information

This commit is contained in:
Khaïs COLIN 2025-02-26 14:07:55 +01:00 committed by Khaïs COLIN
parent c57a4a69a7
commit d303f22b73
7 changed files with 99 additions and 5 deletions

View file

@ -1,5 +1,5 @@
NAME = minishell
DEBUG = -g
DEBUG = -g -O0
# -fno-omit-frame-pointer is to prevent malloc stacktraces from being truncated,
# see "My malloc stacktraces are too short" here:
# https://github.com/google/sanitizers/wiki/AddressSanitizer
@ -19,6 +19,7 @@ ifeq ($(CFLAGS),)
endif
export CFLAGS
srcs = \
src/print_backtrace.c \
src/buffer/buffer.c \
src/env/env.c \
src/env/env_convert.c \