summaryrefslogtreecommitdiff
path: root/test/e2e/build_test.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-08-18 20:52:44 +0200
committerGitHub <noreply@github.com>2020-08-18 20:52:44 +0200
commitff1f81b14a2944a1651e1b404681972ff3483d36 (patch)
tree05a830691cbea0575da682b1cbaf62c667572c04 /test/e2e/build_test.go
parent7995f85f7559af9d69adaaa9061bd5c0c7f0d974 (diff)
parentbc07e1ba708f38b6ea21204b4b0ef9d777c0fcc5 (diff)
downloadpodman-ff1f81b14a2944a1651e1b404681972ff3483d36.tar.gz
podman-ff1f81b14a2944a1651e1b404681972ff3483d36.tar.bz2
podman-ff1f81b14a2944a1651e1b404681972ff3483d36.zip
Merge pull request #7341 from edsantiago/e2e_use_tmpdirs
e2e tests: use actual temp dirs, not "/tmp/dir"
Diffstat (limited to 'test/e2e/build_test.go')
-rw-r--r--test/e2e/build_test.go11
1 files changed, 8 insertions, 3 deletions
diff --git a/test/e2e/build_test.go b/test/e2e/build_test.go
index 1046ffcea..9fd82e149 100644
--- a/test/e2e/build_test.go
+++ b/test/e2e/build_test.go
@@ -127,8 +127,10 @@ var _ = Describe("Podman build", func() {
defer Expect(os.Chdir(cwd)).To(BeNil())
// Write target and fake files
- targetPath := filepath.Join(os.TempDir(), "dir")
- Expect(os.MkdirAll(targetPath, 0755)).To(BeNil())
+ targetPath, err := CreateTempDirInTempDir()
+ if err != nil {
+ os.Exit(1)
+ }
fakeFile := filepath.Join(os.TempDir(), "Containerfile")
Expect(ioutil.WriteFile(fakeFile, []byte("FROM alpine"), 0755)).To(BeNil())
@@ -162,7 +164,10 @@ var _ = Describe("Podman build", func() {
Expect(os.Chdir(os.TempDir())).To(BeNil())
defer Expect(os.Chdir(cwd)).To(BeNil())
- targetPath := filepath.Join(os.TempDir(), "dir")
+ targetPath, err := CreateTempDirInTempDir()
+ if err != nil {
+ os.Exit(1)
+ }
targetFile := filepath.Join(targetPath, "idFile")
session := podmanTest.PodmanNoCache([]string{"build", "build/basicalpine", "--iidfile", targetFile})