tests/pthread_barrier: migrate to testrunner script

This commit is contained in:
Alexandre Abadie 2017-10-29 11:17:44 +01:00
parent 42afbb5fae
commit 1e8104f268
2 changed files with 25 additions and 0 deletions

View File

@ -14,3 +14,6 @@ USEMODULE += random
USEMODULE += xtimer
include $(RIOTBASE)/Makefile.include
test:
tests/01-run.py

View File

@ -0,0 +1,22 @@
#!/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('START')
for i in range(4):
child.expect('Start {}'.format(i + 1))
child.expect('Done 2')
child.expect('Done 1')
child.expect('Done 3')
child.expect('Done 4')
child.expect('SUCCESS')
if __name__ == "__main__":
sys.exit(testrunner.run(testfunc))