Alexandre Abadie d3015f0a57 tests: fix python style E305
expected 2 blank lines after class or function definition, found 1
2017-12-12 15:43:27 +01:00

17 lines
323 B
Python
Executable File

#!/usr/bin/env python3
import os
import sys
sys.path.append(os.path.join(os.environ['RIOTBASE'], 'dist/tools/testrunner'))
import testrunner
def testfunc(child):
child.expect('main starting')
child.expect('msg available: 1 \(should be 1\!\)')
if __name__ == "__main__":
sys.exit(testrunner.run(testfunc))