diff options
author | Chris Evich <cevich@redhat.com> | 2019-07-19 10:46:36 -0400 |
---|---|---|
committer | Chris Evich <cevich@redhat.com> | 2019-08-12 12:01:55 -0400 |
commit | 7508179ed973a1ad0d26754d39180be8066c7df4 (patch) | |
tree | 4ce6bf7c17899dba56868dac5d0c418353467455 /contrib/cirrus/integration_test.sh | |
parent | fd312ae30a8f23dd9fb26d2e72aa0b548b9f8453 (diff) | |
download | podman-7508179ed973a1ad0d26754d39180be8066c7df4.tar.gz podman-7508179ed973a1ad0d26754d39180be8066c7df4.tar.bz2 podman-7508179ed973a1ad0d26754d39180be8066c7df4.zip |
Cirrus: Add experimental fedora VM image & test
Signed-off-by: Chris Evich <cevich@redhat.com>
Diffstat (limited to 'contrib/cirrus/integration_test.sh')
-rwxr-xr-x | contrib/cirrus/integration_test.sh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/contrib/cirrus/integration_test.sh b/contrib/cirrus/integration_test.sh index cfaf33b85..8a43176e4 100755 --- a/contrib/cirrus/integration_test.sh +++ b/contrib/cirrus/integration_test.sh @@ -36,6 +36,13 @@ case "$SPECIALMODE" in -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no \ -o CheckHostIP=no $GOSRC/$SCRIPT_BASE/rootless_test.sh ${TESTSUITE} ;; + cgroupv2) + make + make install PREFIX=/usr ETCDIR=/etc + make test-binaries + echo "WARNING: Integration tests not yet ready for cgroups V2" + #TODO: make local${TESTSUITE} + ;; none) make make install PREFIX=/usr ETCDIR=/etc @@ -52,5 +59,5 @@ case "$SPECIALMODE" in warn '' "No $SPECIALMODE remote client integration tests configured" ;; *) - die 110 "Unsupported \$SPECIAL_MODE: $SPECIALMODE" + die 110 "Unsupported \$SPECIALMODE: $SPECIALMODE" esac |