diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-06-01 14:48:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-01 14:48:35 +0200 |
commit | 22713d62e2860052e21e5e985fba169834709fdc (patch) | |
tree | 495ca4947142903b66980f62bd1f64c1330f6979 /test | |
parent | bb05337f0a4bdd93838c120e239d86dce41a6498 (diff) | |
parent | 8a914e8a0b268121ede5e54032025b4f51dd0b02 (diff) | |
download | podman-22713d62e2860052e21e5e985fba169834709fdc.tar.gz podman-22713d62e2860052e21e5e985fba169834709fdc.tar.bz2 podman-22713d62e2860052e21e5e985fba169834709fdc.zip |
Merge pull request #6353 from lsm5/build-without-varlink
enable building without `varlink` tag
Diffstat (limited to 'test')
-rw-r--r-- | test/endpoint/commit.go | 2 | ||||
-rw-r--r-- | test/endpoint/config.go | 2 | ||||
-rw-r--r-- | test/endpoint/endpoint.go | 2 | ||||
-rw-r--r-- | test/endpoint/endpoint_suite_test.go | 2 | ||||
-rw-r--r-- | test/endpoint/exists_test.go | 2 | ||||
-rw-r--r-- | test/endpoint/pull_test.go | 2 | ||||
-rw-r--r-- | test/endpoint/setup.go | 2 | ||||
-rw-r--r-- | test/endpoint/version_test.go | 2 |
8 files changed, 16 insertions, 0 deletions
diff --git a/test/endpoint/commit.go b/test/endpoint/commit.go index ab9af819f..2a8e365ae 100644 --- a/test/endpoint/commit.go +++ b/test/endpoint/commit.go @@ -1,3 +1,5 @@ +// +build varlink + package endpoint import ( diff --git a/test/endpoint/config.go b/test/endpoint/config.go index 15ee23547..84f8ecb4c 100644 --- a/test/endpoint/config.go +++ b/test/endpoint/config.go @@ -1,3 +1,5 @@ +// +build varlink + package endpoint import "encoding/json" diff --git a/test/endpoint/endpoint.go b/test/endpoint/endpoint.go index 6f4ae6b1f..20b5c577e 100644 --- a/test/endpoint/endpoint.go +++ b/test/endpoint/endpoint.go @@ -1,3 +1,5 @@ +// +build varlink + package endpoint import ( diff --git a/test/endpoint/endpoint_suite_test.go b/test/endpoint/endpoint_suite_test.go index 401da94c2..1cd5c2b9d 100644 --- a/test/endpoint/endpoint_suite_test.go +++ b/test/endpoint/endpoint_suite_test.go @@ -1,3 +1,5 @@ +// +build varlink + package endpoint import ( diff --git a/test/endpoint/exists_test.go b/test/endpoint/exists_test.go index 17e252a65..17e0fcab4 100644 --- a/test/endpoint/exists_test.go +++ b/test/endpoint/exists_test.go @@ -1,3 +1,5 @@ +// +build varlink + package endpoint import ( diff --git a/test/endpoint/pull_test.go b/test/endpoint/pull_test.go index 51eb9c760..25141d787 100644 --- a/test/endpoint/pull_test.go +++ b/test/endpoint/pull_test.go @@ -1,3 +1,5 @@ +// +build varlink + package endpoint import ( diff --git a/test/endpoint/setup.go b/test/endpoint/setup.go index 11fa77b5c..c05cc0cbb 100644 --- a/test/endpoint/setup.go +++ b/test/endpoint/setup.go @@ -1,3 +1,5 @@ +// +build varlink + package endpoint import ( diff --git a/test/endpoint/version_test.go b/test/endpoint/version_test.go index a1168da70..403fca555 100644 --- a/test/endpoint/version_test.go +++ b/test/endpoint/version_test.go @@ -1,3 +1,5 @@ +// +build varlink + package endpoint import ( |