1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-29 16:31:18 +01:00
2020-01-07 11:22:38 +01:00

13 lines
187 B
Python
Executable File

#!/usr/bin/env python3
import sys
from testrunner import run
def testfunc(child):
child.expect_exact("Predicted label: 7")
if __name__ == "__main__":
sys.exit(run(testfunc))