We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 583c7b8 commit 4de2698Copy full SHA for 4de2698
1 file changed
skaffold-duct-tape/test/duct-tape-structure-tests.yaml
@@ -8,3 +8,17 @@ fileExistenceTests:
8
path: '/duct-tape/python/lib/python2.7/site-packages/ptvsd/__init__.py'
9
- name: 'ptvsd for python 3.7'
10
path: '/duct-tape/python/lib/python3.7/site-packages/ptvsd/__init__.py'
11
+
12
13
+commandTests:
14
+ - name: "run with no /dbg should fail"
15
+ command: "sh"
16
+ args: ["/install.sh"]
17
+ expectedError: ["Error: installation requires a volume mount at /dbg"]
18
+ exitCode: 1
19
+ - name: "run with /dbg should install"
20
+ setup: [["mkdir", "/dbg"]]
21
22
23
+ expectedOutput: ["Installing runtime debugging support files in /dbg", "Installation complete"]
24
+ exitCode: 0
0 commit comments