1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #7838 from aabadie/test_thread_basic

tests/thread_basic: rename python testrunner script
This commit is contained in:
Martine Lenders 2017-11-07 21:24:16 +01:00 committed by GitHub
commit 2ffd0427b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -8,4 +8,4 @@ DISABLE_MODULE += auto_init
include $(RIOTBASE)/Makefile.include
test:
./tests/test_thread.py
./tests/01-run.py

View File

@ -12,6 +12,7 @@ import sys
sys.path.append(os.path.join(os.environ['RIOTBASE'], 'dist/tools/testrunner'))
import testrunner
def testfunc(child):
child.expect('first thread\r\n')
child.expect('second thread\r\n')