1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-16 01:53:51 +01:00

29 lines
842 B
Python
Executable File

#!/usr/bin/env python3
# Copyright (C) 2017 Freie Universität Berlin
#
# This file is subject to the terms and conditions of the GNU Lesser
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
import sys
from testrunner import run
# 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(r"adding 512 elements took \d+ms", timeout=TIMEOUT)
child.expect(r"checking 10000 elements took \d+ms", timeout=TIMEOUT)
child.expect(r"\d+ elements probably in the filter.")
child.expect(r"\d+ elements not in the filter.")
child.expect(r"0\.\d+ false positive rate.")
child.expect_exact("All done!")
if __name__ == "__main__":
sys.exit(run(testfunc))