Skip to content

Commit 8874a68

Browse files
Updated Test Coverage
1 parent 3cdccce commit 8874a68

15 files changed

+225
-16
lines changed

.vscode/launch.json

Lines changed: 151 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,151 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
5+
{
6+
"name": "Debug TestMountStubsDirectory",
7+
"type": "go",
8+
"request": "launch",
9+
"mode": "test",
10+
"program": "${workspaceFolder}/client",
11+
"args": [
12+
"-test.run",
13+
"TestIntegration/TestMountStubsDirectory",
14+
"-test.v",
15+
"-test.timeout=10m"
16+
],
17+
"env": {},
18+
"showLog": true,
19+
"trace": "verbose"
20+
},
21+
{
22+
"name": "Debug TestDefaultEnvWithArgs with containerd worker",
23+
"type": "go",
24+
"request": "launch",
25+
"mode": "test",
26+
"program": "${workspaceFolder}/frontend/dockerfile",
27+
"args": [
28+
"-test.run",
29+
"TestIntegration/TestDefaultEnvWithArgs/worker=containerd",
30+
"-test.v",
31+
"-test.timeout=10m"
32+
],
33+
"env": {},
34+
"showLog": true,
35+
"trace": "verbose"
36+
},
37+
{
38+
"name": "Debug TestCopyLinkDotDestDir",
39+
"type": "go",
40+
"request": "launch",
41+
"mode": "test",
42+
"program": "${workspaceFolder}/frontend/dockerfile",
43+
"args": [
44+
"-test.run",
45+
"TestIntegration/TestCopyLinkDotDestDir",
46+
"-test.v",
47+
"-test.timeout=3m"
48+
],
49+
"env": {},
50+
"showLog": true,
51+
"trace": "verbose"
52+
},
53+
{
54+
"name": "Debug TestCopyLinkDotDestDir with containerd worker",
55+
"type": "go",
56+
"request": "launch",
57+
"mode": "test",
58+
"program": "${workspaceFolder}/frontend/dockerfile",
59+
"args": [
60+
"-test.run",
61+
"TestIntegration/TestCopyLinkDotDestDir/worker=containerd",
62+
"-test.v",
63+
"-test.timeout=10m"
64+
],
65+
"env": {},
66+
"showLog": true,
67+
"trace": "verbose"
68+
},
69+
70+
{
71+
"name": "Debug TestTarExporterMulti with containerd worker",
72+
"type": "go",
73+
"request": "launch",
74+
"mode": "test",
75+
"program": "${workspaceFolder}/frontend/dockerfile",
76+
"args": [
77+
"-test.run",
78+
"TestIntegration/TestTarExporterMulti/worker=containerd",
79+
"-test.v",
80+
"-test.timeout=10m"
81+
],
82+
"env": {},
83+
"showLog": true,
84+
"trace": "verbose"
85+
},
86+
{
87+
"name": "Debug TestCopyLinkEmptyDestDir with containerd worker",
88+
"type": "go",
89+
"request": "launch",
90+
"mode": "test",
91+
"program": "${workspaceFolder}/frontend/dockerfile",
92+
"args": [
93+
"-test.run",
94+
"TestIntegration/TestCopyLinkEmptyDestDir/worker=containerd",
95+
"-test.v",
96+
"-test.timeout=3m"
97+
],
98+
"env": {},
99+
"showLog": true,
100+
"trace": "verbose"
101+
},
102+
{
103+
"name": "Debug TestMoveParentDir",
104+
"type": "go",
105+
"request": "launch",
106+
"mode": "test",
107+
"program": "${workspaceFolder}/client",
108+
"args": [
109+
"-test.run",
110+
"TestIntegration/TestMoveParentDir",
111+
"-test.v",
112+
"-test.timeout=20m"
113+
],
114+
"env": {},
115+
"showLog": true,
116+
"trace": "verbose"
117+
},
118+
{
119+
"name": "Debug TestMoveParentDir with containerd worker",
120+
"type": "go",
121+
"request": "launch",
122+
"mode": "test",
123+
"program": "${workspaceFolder}/client",
124+
"args": [
125+
"-test.run",
126+
"TestIntegration/TestMoveParentDir/worker=containerd",
127+
"-test.v",
128+
"-test.timeout=20m"
129+
],
130+
"env": {},
131+
"showLog": true,
132+
"trace": "verbose"
133+
},
134+
{
135+
"name": "Debug all client tests",
136+
"type": "go",
137+
"request": "launch",
138+
"mode": "test",
139+
"program": "${workspaceFolder}/client",
140+
"args": [
141+
"-test.run",
142+
"TestIntegration",
143+
"-test.v",
144+
"-test.timeout=10m"
145+
],
146+
"env": {},
147+
"showLog": true,
148+
"trace": "verbose"
149+
}
150+
]
151+
}

0 commit comments

Comments
 (0)