diff options
-rw-r--r-- | payloads/libpayload/tests/Makefile.mk | 8 | ||||
-rw-r--r-- | tests/Makefile.common | 8 |
2 files changed, 14 insertions, 2 deletions
diff --git a/payloads/libpayload/tests/Makefile.mk b/payloads/libpayload/tests/Makefile.mk index e271a7cea8..9bac9e6505 100644 --- a/payloads/libpayload/tests/Makefile.mk +++ b/payloads/libpayload/tests/Makefile.mk @@ -47,7 +47,13 @@ TEST_CFLAGS += -Wwrite-strings -Wno-trigraphs -Wimplicit-fallthrough TEST_CFLAGS += -Wstrict-aliasing -Wshadow -Werror TEST_CFLAGS += -Wno-unknown-warning-option -Wno-source-mgr -Wno-main-return-type -TEST_CFLAGS += -std=gnu11 -Os -ffunction-sections -fdata-sections -fno-builtin +TEST_CFLAGS += -std=gnu11 -ffunction-sections -fdata-sections -fno-builtin + +ifneq ($(filter-out 0,$(DEBUG)),) +TEST_CFLAGS += -Og -ggdb3 +else +TEST_CFLAGS += -Os +endif # Make unit-tests detectable by the code TEST_CFLAGS += -D__TEST__ diff --git a/tests/Makefile.common b/tests/Makefile.common index 5cb7b25b59..ace16d2dd2 100644 --- a/tests/Makefile.common +++ b/tests/Makefile.common @@ -51,7 +51,13 @@ TEST_CFLAGS += -Wno-unknown-warning-option -Wno-source-mgr -Wno-main-return-type TEST_CFLAGS += -Wno-array-compare -Wno-packed-not-aligned -Wno-trigraphs TEST_CFLAGS += -Wno-unused-but-set-variables -TEST_CFLAGS += -std=gnu11 -Os -ffunction-sections -fdata-sections -fno-builtin +TEST_CFLAGS += -std=gnu11 -ffunction-sections -fdata-sections -fno-builtin + +ifneq ($(filter-out 0,$(DEBUG)),) +TEST_CFLAGS += -Og -ggdb3 +else +TEST_CFLAGS += -Os +endif TEST_CFLAGS += -D__TEST__ |