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

tests/periph_eeprom: add testrunner script

parent ae6028c7
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python3
# Copyright (C) 2018 Inria
#
# This file is subject to the terms and conditions of the GNU Lesser
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
import sys
from testrunner import run
def testfunc(child):
child.sendline('test')
child.expect('SUCCESS')
if __name__ == "__main__":
sys.exit(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