Skip to content

Commit

Permalink
cpu/esp*: reduce test timeouts for spiffs/littlefs
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
gschorcht committed Dec 6, 2019
1 parent 95c6d18 commit 35357b8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cpu/esp32/Makefile.include
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions cpu/esp8266/Makefile.include
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 35357b8

Please sign in to comment.