1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-19 11:33:51 +01:00
Gunar Schorcht 1ab0b77543 tests/thread_priority_inversion: revert blacklisting ESP32
This reverts commit 2210721d5cf2728ed5f8135c6a8e32c3d538baa0.
2022-09-01 15:08:16 +02:00

18 lines
451 B
Makefile

include ../Makefile.tests_common
USEMODULE += fmt
USEMODULE += core_mutex_priority_inheritance
ifneq ($(RIOT_CI_BUILD),1)
# For human beings add a busy delay to the mid priority task to make the problem more approachable
FANCY ?= 1
else
# Skip the fancy delay for the CI to not waste precious CI time
FANCY ?= 0
endif
include $(RIOTBASE)/Makefile.include
CFLAGS += -DFANCY=$(FANCY)
CFLAGS += -DTHREAD_STACKSIZE_MAIN=THREAD_STACKSIZE_SMALL