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:
commit
96cb4e9a91
@ -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.")
|
||||
|
Loading…
Reference in New Issue
Block a user