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:
parent
95c6d1859c
commit
35357b86a8
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user