mirror of https://github.com/docker/docs.git
Merge pull request #6926 from LK4D4/log_for_tar_test
Simple additions to TestBuildAddTar
This commit is contained in:
commit
aec8d90462
|
@ -1733,7 +1733,8 @@ RUN [ "$(cat /testfile)" = 'test!' ]`
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestBuildAddTar(t *testing.T) {
|
func TestBuildAddTar(t *testing.T) {
|
||||||
|
name := "testbuildaddtar"
|
||||||
|
defer deleteImages(name)
|
||||||
checkOutput := func(out string) {
|
checkOutput := func(out string) {
|
||||||
n := -1
|
n := -1
|
||||||
x := ""
|
x := ""
|
||||||
|
@ -1756,10 +1757,11 @@ func TestBuildAddTar(t *testing.T) {
|
||||||
|
|
||||||
for _, n := range []string{"1", "2"} {
|
for _, n := range []string{"1", "2"} {
|
||||||
buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestBuildAddTar", n)
|
buildDirectory := filepath.Join(workingDirectory, "build_tests", "TestBuildAddTar", n)
|
||||||
buildCmd := exec.Command(dockerBinary, "build", "-t", "testbuildaddtar", ".")
|
buildCmd := exec.Command(dockerBinary, "build", "-t", name, ".")
|
||||||
buildCmd.Dir = buildDirectory
|
buildCmd.Dir = buildDirectory
|
||||||
out, _, err := runCommandWithOutput(buildCmd)
|
out, _, err := runCommandWithOutput(buildCmd)
|
||||||
errorOut(err, t, fmt.Sprintf("build failed to complete for TestBuildAddTar/%s: %v", n, err))
|
errorOut(err, t, fmt.Sprintf("build failed to complete for TestBuildAddTar/%s: %v", n, err))
|
||||||
checkOutput(out)
|
checkOutput(out)
|
||||||
}
|
}
|
||||||
|
logDone("build - ADD tar")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue