Skip to content
Snippets Groups Projects
Commit c1a08451 authored by Alexandre Abadie's avatar Alexandre Abadie
Browse files

tests/pthread_rwlock: migrate to testrunner script

parent 31ffda0a
No related branches found
No related tags found
No related merge requests found
......@@ -14,3 +14,6 @@ BOARD_INSUFFICIENT_MEMORY += airfy-beacon chronos mbed_lpc1768 msb-430 msb-430h
spark-core stm32f0discovery yunjia-nrf51822
include $(RIOTBASE)/Makefile.include
test:
tests/01-run.py
#!/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 _ in range(8):
child.expect('start')
for _ in range(8):
child.expect('done')
child.expect('SUCCESS')
if __name__ == "__main__":
sys.exit(testrunner.run(testfunc))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment