1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #9029 from cladmi/pr/fix/test/wsn430/bloom_bytes

tests/bloom_bytes: increase timeout for wsn430
This commit is contained in:
Kaspar Schleiser 2018-04-27 11:39:15 +02:00 committed by GitHub
commit 96cb4e9a91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,11 +10,15 @@ import os
import sys
# Biggest step takes 135 seconds on wn430
TIMEOUT = 150
def testfunc(child):
child.expect_exact("Testing Bloom filter.")
child.expect_exact("m: 4096 k: 8")
child.expect("adding 512 elements took \d+ms")
child.expect("checking 10000 elements took \d+ms")
child.expect("adding 512 elements took \d+ms", timeout=TIMEOUT)
child.expect("checking 10000 elements took \d+ms", timeout=TIMEOUT)
child.expect("\d+ elements probably in the filter.")
child.expect("\d+ elements not in the filter.")
child.expect(".+ false positive rate.")