summaryrefslogtreecommitdiff
path: root/libpod/image/image_test.go
diff options
context:
space:
mode:
authorNalin Dahyabhai <nalin@redhat.com>2019-09-25 16:25:10 -0400
committerNalin Dahyabhai <nalin@redhat.com>2019-09-26 18:19:07 -0400
commit65b20bd521302020ff229d455c60102e15a41b8a (patch)
treec378d118a2661cb619715a425b8deec3e4f4c993 /libpod/image/image_test.go
parent851e3775d5d2e605bcb612054a94ac6de005f834 (diff)
downloadpodman-65b20bd521302020ff229d455c60102e15a41b8a.tar.gz
podman-65b20bd521302020ff229d455c60102e15a41b8a.tar.bz2
podman-65b20bd521302020ff229d455c60102e15a41b8a.zip
Correct use of reexec.Init()
A true result from reexec.Init() isn't an error, but it indicates that main() should exit with a success exit status. Signed-off-by: Nalin Dahyabhai <nalin@redhat.com>
Diffstat (limited to 'libpod/image/image_test.go')
-rw-r--r--libpod/image/image_test.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/libpod/image/image_test.go b/libpod/image/image_test.go
index 5a6d095f6..ef39d09c3 100644
--- a/libpod/image/image_test.go
+++ b/libpod/image/image_test.go
@@ -11,6 +11,7 @@ import (
"github.com/containers/libpod/libpod/events"
"github.com/containers/libpod/pkg/util"
"github.com/containers/storage"
+ "github.com/containers/storage/pkg/reexec"
"github.com/opencontainers/go-digest"
"github.com/stretchr/testify/assert"
)
@@ -70,6 +71,13 @@ func makeLocalMatrix(b, bg *Image) ([]localImageTest, error) {
}
+func TestMain(m *testing.M) {
+ if reexec.Init() {
+ return
+ }
+ os.Exit(m.Run())
+}
+
// TestImage_NewFromLocal tests finding the image locally by various names,
// tags, and aliases
func TestImage_NewFromLocal(t *testing.T) {