test: fix SkipIfRootless() helper
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
This commit is contained in:
parent
4ab7462add
commit
66d2190125
|
|
@ -18,7 +18,11 @@ func SkipIfRemote() {
|
|||
ginkgo.Skip("This function is not enabled for remote podman")
|
||||
}
|
||||
|
||||
func SkipIfRootless() {}
|
||||
func SkipIfRootless() {
|
||||
if os.Geteuid() != 0 {
|
||||
ginkgo.Skip("This function is not enabled for remote podman")
|
||||
}
|
||||
}
|
||||
|
||||
// Cleanup cleans up the temporary store
|
||||
func (p *PodmanTestIntegration) Cleanup() {
|
||||
|
|
@ -135,6 +139,9 @@ func (p *PodmanTestIntegration) CleanupVolume() {
|
|||
}
|
||||
|
||||
func PodmanTestCreate(tempDir string) *PodmanTestIntegration {
|
||||
if os.Geteuid() != 0 {
|
||||
ginkgo.Skip("This function is not enabled for rootless podman")
|
||||
}
|
||||
pti := PodmanTestCreateUtil(tempDir, true)
|
||||
pti.StartVarlink()
|
||||
return pti
|
||||
|
|
|
|||
|
|
@ -20,10 +20,16 @@ import (
|
|||
"github.com/onsi/gomega/gexec"
|
||||
)
|
||||
|
||||
func SkipIfRemote() {}
|
||||
func SkipIfRemote() {
|
||||
if os.Geteuid() != 0 {
|
||||
ginkgo.Skip("This function is not enabled for rootless podman")
|
||||
}
|
||||
}
|
||||
|
||||
func SkipIfRootless() {
|
||||
ginkgo.Skip("This function is not enabled for rootless podman")
|
||||
if os.Geteuid() != 0 {
|
||||
ginkgo.Skip("This function is not enabled for rootless podman")
|
||||
}
|
||||
}
|
||||
|
||||
// Podman is the exec call to podman on the filesystem
|
||||
|
|
|
|||
Loading…
Reference in New Issue