diff options
author | Valentin Rothberg <vrothberg@redhat.com> | 2022-03-18 09:11:53 +0100 |
---|---|---|
committer | Valentin Rothberg <vrothberg@redhat.com> | 2022-03-18 09:11:53 +0100 |
commit | ea08765f400d828907f231baa84bd880a00d95f1 (patch) | |
tree | 3ddf8be1f7b9d66416451632a3664a13a925a548 /test | |
parent | e59f71d230cf5435dc569add90e22cc644e38647 (diff) | |
download | podman-ea08765f400d828907f231baa84bd880a00d95f1.tar.gz podman-ea08765f400d828907f231baa84bd880a00d95f1.tar.bz2 podman-ea08765f400d828907f231baa84bd880a00d95f1.zip |
go fmt: use go 1.18 conditional-build syntax
Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/checkseccomp/checkseccomp.go | 1 | ||||
-rw-r--r-- | test/e2e/libpod_suite_test.go | 1 | ||||
-rw-r--r-- | test/e2e/play_build_test.go | 1 | ||||
-rw-r--r-- | test/e2e/run_apparmor_test.go | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/test/checkseccomp/checkseccomp.go b/test/checkseccomp/checkseccomp.go index 9046e0955..6c188ec0d 100644 --- a/test/checkseccomp/checkseccomp.go +++ b/test/checkseccomp/checkseccomp.go @@ -1,3 +1,4 @@ +//go:build seccomp // +build seccomp package main diff --git a/test/e2e/libpod_suite_test.go b/test/e2e/libpod_suite_test.go index ccd7c771e..cf81a0348 100644 --- a/test/e2e/libpod_suite_test.go +++ b/test/e2e/libpod_suite_test.go @@ -1,3 +1,4 @@ +//go:build !remote // +build !remote package integration diff --git a/test/e2e/play_build_test.go b/test/e2e/play_build_test.go index 849ba7162..96785c569 100644 --- a/test/e2e/play_build_test.go +++ b/test/e2e/play_build_test.go @@ -1,3 +1,4 @@ +//go:build !remote // +build !remote // build for play kube is not supported on remote yet. diff --git a/test/e2e/run_apparmor_test.go b/test/e2e/run_apparmor_test.go index e6526217a..64a01deb7 100644 --- a/test/e2e/run_apparmor_test.go +++ b/test/e2e/run_apparmor_test.go @@ -1,3 +1,4 @@ +//go:build !remote // +build !remote package integration |