diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-08-12 21:28:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-12 21:28:56 +0200 |
commit | f634fd39001ad3dc62b83e5d78c6912db915a1e9 (patch) | |
tree | b7f5ad11be24f0d63cc8dd76a978781014a5e788 /contrib/cirrus/integration_test.sh | |
parent | 3cf4567e1dfcf172673694a1171ae18bcbf9c846 (diff) | |
parent | b843804d51ec3fb747670201b6178896d9a4580d (diff) | |
download | podman-f634fd39001ad3dc62b83e5d78c6912db915a1e9.tar.gz podman-f634fd39001ad3dc62b83e5d78c6912db915a1e9.tar.bz2 podman-f634fd39001ad3dc62b83e5d78c6912db915a1e9.zip |
Merge pull request #3607 from cevich/cgroup2_vm
Add another Fedora VM with cgroups v2 enabled
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 |