1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu/esp*: reduce test timeouts for spiffs/littlefs

To avoid that murdock times out before tests/pkg_spiffs and tests/pkg_littlefs time out, the configured test timeouts for these tests is reduced to 200 seconds which should be enough. An ESP32 needs an average of 60 seconds for these tests, while an ESP8266 needs in average 100 seconds.
This commit is contained in:
Gunar Schorcht 2019-12-06 11:29:44 +01:00
parent 95c6d1859c
commit 35357b86a8
2 changed files with 4 additions and 4 deletions

View File

@ -63,11 +63,11 @@ ifneq (,$(filter esp_eth,$(USEMODULE)))
endif
ifneq (,$(filter spiffs,$(USEMODULE)))
export RIOT_TEST_TIMEOUT = 300
export RIOT_TEST_TIMEOUT = 120
endif
ifneq (,$(filter littlefs,$(USEMODULE)))
export RIOT_TEST_TIMEOUT = 300
export RIOT_TEST_TIMEOUT = 120
endif
# ESP32 pseudomodules

View File

@ -47,11 +47,11 @@ ifneq (, $(filter esp_gdbstub, $(USEMODULE)))
endif
ifneq (, $(filter spiffs, $(USEMODULE)))
export RIOT_TEST_TIMEOUT = 300
export RIOT_TEST_TIMEOUT = 200
endif
ifneq (, $(filter littlefs, $(USEMODULE)))
export RIOT_TEST_TIMEOUT = 300
export RIOT_TEST_TIMEOUT = 200
endif
# regular Makefile