mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-18 19:13:51 +01:00
examples: Fix incorrect category heading examples: shorten coap folder name static-tests/examples: check subfolders for entries ci/test_native: Adjust to new examples structure examples: adjust makefiles to new structure ci/tests: Fix symlinks to point towards proper examples
14 lines
204 B
Python
Executable File
14 lines
204 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
from testrunner import run
|
|
|
|
|
|
def testfunc(child):
|
|
child.expect_exact('All Done')
|
|
print("[TEST PASSED]")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(run(testfunc))
|