tests/od: run tests with echo=True by default

This commit is contained in:
Gaëtan Harter 2018-08-09 07:12:13 +02:00
parent 0e48bd0d93
commit e354bf4174
No known key found for this signature in database
GPG Key ID: 76DF6BCF1B1F883B
2 changed files with 2 additions and 2 deletions

View File

@ -42,4 +42,4 @@ def testfunc(child):
if __name__ == "__main__":
sys.path.append(os.path.join(os.environ['RIOTTOOLS'], 'testrunner'))
from testrunner import run
sys.exit(run(testfunc, timeout=1, echo=False))
sys.exit(run(testfunc, timeout=1))

View File

@ -42,4 +42,4 @@ def testfunc(child):
if __name__ == "__main__":
sys.path.append(os.path.join(os.environ['RIOTTOOLS'], 'testrunner'))
from testrunner import run
sys.exit(run(testfunc, timeout=1, echo=False))
sys.exit(run(testfunc, timeout=1))