diff options
author | baude <bbaude@redhat.com> | 2019-05-30 10:56:21 -0500 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-05-31 14:54:06 -0500 |
commit | d1c44ea8560c59d843f8550005050a5e09e2b062 (patch) | |
tree | a3bd01d5ae4b67d4cdae83ed975394149ad444ed /contrib/cirrus/rootless_test.sh | |
parent | 7358a4c590526cd656affd20db051dd6a852f3bb (diff) | |
download | podman-d1c44ea8560c59d843f8550005050a5e09e2b062.tar.gz podman-d1c44ea8560c59d843f8550005050a5e09e2b062.tar.bz2 podman-d1c44ea8560c59d843f8550005050a5e09e2b062.zip |
split rootless local and remote testing
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'contrib/cirrus/rootless_test.sh')
-rwxr-xr-x | contrib/cirrus/rootless_test.sh | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/contrib/cirrus/rootless_test.sh b/contrib/cirrus/rootless_test.sh index 3b668034b..ef0d05cfd 100755 --- a/contrib/cirrus/rootless_test.sh +++ b/contrib/cirrus/rootless_test.sh @@ -2,6 +2,14 @@ set -e +remote=0 + +# The TEST_REMOTE_CLIENT environment variable decides whether +# to test varlinke +if [[ "$TEST_REMOTE_CLIENT" == "true" ]]; then + remote=1 +fi + source $(dirname $0)/lib.sh if [[ "$UID" == "0" ]] @@ -25,5 +33,8 @@ cd "$GOSRC" make make varlink_generate make test-binaries -make ginkgo -make ginkgo-remote +if [ $remote -eq 0 ]; then + make ginkgo +else + make ginkgo-remote +fi |