Skip to content
Snippets Groups Projects
Unverified Commit 96cb4e9a authored by Kaspar Schleiser's avatar Kaspar Schleiser Committed by GitHub
Browse files

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

tests/bloom_bytes: increase timeout for wsn430
parents 4b1e48cd fa589286
No related branches found
No related tags found
No related merge requests found
...@@ -10,11 +10,15 @@ import os ...@@ -10,11 +10,15 @@ import os
import sys import sys
# Biggest step takes 135 seconds on wn430
TIMEOUT = 150
def testfunc(child): def testfunc(child):
child.expect_exact("Testing Bloom filter.") child.expect_exact("Testing Bloom filter.")
child.expect_exact("m: 4096 k: 8") child.expect_exact("m: 4096 k: 8")
child.expect("adding 512 elements took \d+ms") child.expect("adding 512 elements took \d+ms", timeout=TIMEOUT)
child.expect("checking 10000 elements took \d+ms") child.expect("checking 10000 elements took \d+ms", timeout=TIMEOUT)
child.expect("\d+ elements probably in the filter.") child.expect("\d+ elements probably in the filter.")
child.expect("\d+ elements not in the filter.") child.expect("\d+ elements not in the filter.")
child.expect(".+ false positive rate.") child.expect(".+ false positive rate.")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment