We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ff4d19 commit 1f674a4Copy full SHA for 1f674a4
examples/basic/subfolders/tests/01-run.py
@@ -0,0 +1,17 @@
1
+#!/usr/bin/env python3
2
+
3
+import sys
4
+from testrunner import run
5
6
7
+def testfunc(child):
8
+ child.expect_exact('./main.c')
9
+ child.expect_exact('./module/a.c')
10
+ child.expect_exact('./module/b.c')
11
+ child.expect_exact('./folder/a.c')
12
+ child.expect_exact('./folder/subfolder/b.c')
13
+ child.expect_exact('./folder/subfolder/c.c')
14
15
16
+if __name__ == "__main__":
17
+ sys.exit(run(testfunc))
0 commit comments