Skip CRIU tests when $RUNC_USE_SYSTEMD for now
These tests sometimes hang, so let's skip them for now. Tested: $ sudo make localintegration TESTPATH='/checkpoint.bats' RUNC_USE_SYSTEMD=1 The 5 tests in this test suite will be skipped. Signed-off-by: Filipe Brandenburger <filbranden@google.com>
This commit is contained in:
parent
d4586090c4
commit
5369f9ade3
|
@ -3,6 +3,10 @@
|
||||||
load helpers
|
load helpers
|
||||||
|
|
||||||
function setup() {
|
function setup() {
|
||||||
|
if [[ -n "${RUNC_USE_SYSTEMD}" ]] ; then
|
||||||
|
skip "CRIU test suite is skipped on systemd cgroup driver for now."
|
||||||
|
fi
|
||||||
|
|
||||||
teardown_busybox
|
teardown_busybox
|
||||||
setup_busybox
|
setup_busybox
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue