Skip to content

Commit 750a366

Browse files
agattidpgeorge
authored andcommitted
tests/run-tests.py: Skip list sort stress test for ESP8266.
This commit marks the "stress/list_sort.py" test to be skipped when running on ESP8266. The test just takes too long without yielding to the OS whilst doing the sort, causing the internal software watchdog to kick in and reboot the board. Signed-off-by: Alessandro Gatti <a.gatti@frob.it>
1 parent ef567dc commit 750a366

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

tests/run-tests.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,9 @@ def open(self, path, mode):
180180
# Tests to skip on specific targets.
181181
# These are tests that are difficult to detect that they should not be run on the given target.
182182
platform_tests_to_skip = {
183+
"esp8266": (
184+
"stress/list_sort.py", # watchdog kicks in because it takes too long
185+
),
183186
"minimal": (
184187
"basics/class_inplace_op.py", # all special methods not supported
185188
"basics/subclass_native_init.py", # native subclassing corner cases not support

0 commit comments

Comments
 (0)