1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

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.
This commit is contained in:
Gaëtan Harter 2018-05-08 11:38:23 +02:00
parent 57a2397631
commit 4f2521262b
No known key found for this signature in database
GPG Key ID: 76DF6BCF1B1F883B

View File

@ -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.")