2016-12-04 20:55:33 +01:00
|
|
|
include ../Makefile.tests_common
|
|
|
|
|
|
|
|
USEMODULE += ssp
|
|
|
|
|
2020-09-22 14:41:44 +02:00
|
|
|
# This test intentionally crashes the firmware and when using a board with
|
|
|
|
# stdio via CDC ACM, RIOT can't print anything after the crash.
|
|
|
|
FEATURES_BLACKLIST += highlevel_stdio
|
2020-03-11 11:45:42 +01:00
|
|
|
|
2016-12-04 20:55:33 +01:00
|
|
|
include $(RIOTBASE)/Makefile.include
|
2019-11-21 16:02:06 +01:00
|
|
|
|
|
|
|
ifneq (,$(shell $(CC) --help=warnings | grep '\-Wstringop-overflow='))
|
|
|
|
CFLAGS += -Wstringop-overflow=0
|
|
|
|
endif
|
2021-02-09 17:10:21 +01:00
|
|
|
|
|
|
|
ifneq (,$(shell $(CC) --help=warnings | grep '\-Warray-bounds='))
|
|
|
|
CFLAGS += -Warray-bounds=0
|
|
|
|
endif
|