Переглянути джерело

Add logDone logs where it's missing

Signed-off-by: Alexandr Morozov <lk4d4math@gmail.com>
Alexandr Morozov 11 роки тому
батько
коміт
3c984a6d15

+ 2 - 0
integration-cli/docker_cli_commit_test.go

@@ -109,6 +109,8 @@ func TestCommitTTY(t *testing.T) {
 	if _, err := runCommand(cmd); err != nil {
 		t.Fatal(err)
 	}
+
+	logDone("commit - commit tty")
 }
 
 func TestCommitWithHostBindMount(t *testing.T) {

+ 2 - 0
integration-cli/docker_cli_diff_test.go

@@ -88,4 +88,6 @@ func TestDiffEnsureOnlyKmsgAndPtmx(t *testing.T) {
 			t.Errorf("'%s' is shown in the diff but shouldn't", line)
 		}
 	}
+
+	logDone("diff - ensure that only kmsg and ptmx in diff")
 }

+ 2 - 0
integration-cli/docker_cli_history_test.go

@@ -40,6 +40,8 @@ func TestBuildHistory(t *testing.T) {
 	}
 
 	deleteImages("testbuildhistory")
+
+	logDone("history - build history")
 }
 
 func TestHistoryExistentImage(t *testing.T) {

+ 4 - 0
integration-cli/docker_cli_links_test.go

@@ -53,6 +53,8 @@ func TestPingUnlinkedContainers(t *testing.T) {
 	} else if exitCode != 1 {
 		errorOut(err, t, fmt.Sprintf("run ping failed with errors: %v", err))
 	}
+
+	logDone("links - ping unlinked container")
 }
 
 func TestPingLinkedContainers(t *testing.T) {
@@ -65,6 +67,8 @@ func TestPingLinkedContainers(t *testing.T) {
 	cmd(t, "kill", idA)
 	cmd(t, "kill", idB)
 	deleteAllContainers()
+
+	logDone("links - ping linked container")
 }
 
 func TestIpTablesRulesWhenLinkAndUnlink(t *testing.T) {

+ 2 - 0
integration-cli/docker_cli_run_test.go

@@ -1722,6 +1722,8 @@ func TestBindMounts(t *testing.T) {
 	if content != expected {
 		t.Fatalf("Output should be %q, actual out: %q", expected, content)
 	}
+
+	logDone("run - bind mounts")
 }
 
 func TestHostsLinkedContainerUpdate(t *testing.T) {