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 endif
ifneq (,$(filter spiffs,$(USEMODULE))) ifneq (,$(filter spiffs,$(USEMODULE)))
export RIOT_TEST_TIMEOUT = 300 export RIOT_TEST_TIMEOUT = 120
endif endif
ifneq (,$(filter littlefs,$(USEMODULE))) ifneq (,$(filter littlefs,$(USEMODULE)))
export RIOT_TEST_TIMEOUT = 300 export RIOT_TEST_TIMEOUT = 120
endif endif
# ESP32 pseudomodules # ESP32 pseudomodules

View File

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