From 4f2521262b5b0241d4a8ed6760aadb23c8ac745a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Harter?= Date: Tue, 8 May 2018 11:38:23 +0200 Subject: [PATCH] tests/mutex_unlock_and_sleep: reduce number of loops in test Globally speed up automated tests as iterating more does not add anything. Especially usefull for wsn430 that now takes ~30 seconds instead of the double. --- tests/mutex_unlock_and_sleep/tests/01-run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/mutex_unlock_and_sleep/tests/01-run.py b/tests/mutex_unlock_and_sleep/tests/01-run.py index 28d12e30af..955095373a 100755 --- a/tests/mutex_unlock_and_sleep/tests/01-run.py +++ b/tests/mutex_unlock_and_sleep/tests/01-run.py @@ -11,7 +11,7 @@ import sys def testfunc(child): - for i in range(20): + for i in range(10): child.expect(r"\[ALIVE\] alternated \d+k times.")