e2e: Remove some directories at SynchronizedAfterSuite

"tempdir" in SynchronizedAftersuite and "LockTmpDir" can be removed.

Signed-off-by: Toshiki Sonoda <sonoda.toshiki@fujitsu.com>
This commit is contained in:
Toshiki Sonoda
2023-01-27 21:25:44 +09:00
parent 8fce9dcde6
commit 814f7c5695

View File

@ -180,6 +180,7 @@ var _ = SynchronizedAfterSuite(func() {},
os.Exit(1)
}
podmanTest := PodmanTestCreate(tempdir)
defer os.RemoveAll(tempdir)
if err := os.RemoveAll(podmanTest.Root); err != nil {
fmt.Printf("%q\n", err)
@ -192,6 +193,9 @@ var _ = SynchronizedAfterSuite(func() {},
// for localized tests, this removes the image cache dir and for remote tests
// this is a no-op
removeCache()
// LockTmpDir can already be removed
os.RemoveAll(LockTmpDir)
})
// PodmanTestCreate creates a PodmanTestIntegration instance for the tests