Skip to content

Commit acced5d

Browse files
authored
Merge pull request #2603 from crosbymichael/test-wait
Wait before start with runtime root test
2 parents d5aebde + a3d3055 commit acced5d

File tree

1 file changed

+8
-18
lines changed

1 file changed

+8
-18
lines changed

daemon_config_linux_test.go

+8-18
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,10 @@ func newDaemonWithConfig(t *testing.T, configTOML string) (*Client, *daemon, fun
109109
// cleaning config-specific resources is up to the caller
110110
}
111111
return client, &ctrd, cleanup
112-
113112
}
114113

115-
func testDaemonRuntimeRoot(t *testing.T, noShim bool) {
114+
// TestDaemonRuntimeRoot ensures plugin.linux.runtime_root is not ignored
115+
func TestDaemonRuntimeRoot(t *testing.T) {
116116
runtimeRoot, err := ioutil.TempDir("", "containerd-test-runtime-root")
117117
if err != nil {
118118
t.Fatal(err)
@@ -154,6 +154,11 @@ func testDaemonRuntimeRoot(t *testing.T, noShim bool) {
154154
}
155155
defer task.Delete(ctx)
156156

157+
status, err := task.Wait(ctx)
158+
if err != nil {
159+
t.Fatal(err)
160+
}
161+
157162
if err = task.Start(ctx); err != nil {
158163
t.Fatal(err)
159164
}
@@ -163,23 +168,8 @@ func testDaemonRuntimeRoot(t *testing.T, noShim bool) {
163168
t.Errorf("error while getting stat for %s: %v", stateJSONPath, err)
164169
}
165170

166-
finishedC, err := task.Wait(ctx)
167-
if err != nil {
168-
t.Fatal(err)
169-
}
170171
if err = task.Kill(ctx, syscall.SIGKILL); err != nil {
171172
t.Error(err)
172173
}
173-
<-finishedC
174-
}
175-
176-
// TestDaemonRuntimeRoot ensures plugin.linux.runtime_root is not ignored
177-
func TestDaemonRuntimeRoot(t *testing.T) {
178-
testDaemonRuntimeRoot(t, false)
179-
}
180-
181-
// TestDaemonRuntimeRootNoShim ensures plugin.linux.runtime_root is not ignored when no_shim is true
182-
func TestDaemonRuntimeRootNoShim(t *testing.T) {
183-
t.Skip("no_shim is not functional now: https://github.com/containerd/containerd/issues/2181")
184-
testDaemonRuntimeRoot(t, true)
174+
<-status
185175
}

0 commit comments

Comments
 (0)