Testrunner is now impported as a package found in PYTHONPATH, so import can be placed at the top of the script as usual.
28 lines
695 B
Python
Executable File
28 lines
695 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
# Copyright (C) 2016 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.
|
|
|
|
from __future__ import print_function
|
|
import sys
|
|
from testrunner import run
|
|
|
|
how_many = 100
|
|
|
|
|
|
def testfunc(child):
|
|
for i in range(how_many):
|
|
for j in range(8):
|
|
child.expect(r'received msg "%i"' % (j + 1))
|
|
print(".", end="", flush=True)
|
|
print("")
|
|
print("Stopped after %i iterations, but should run forever." % how_many)
|
|
print("=> All tests successful")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(run(testfunc))
|