mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-22 18:07:57 +00:00
Show information about mounts available on the host filesystem. This is useful for debugging. Signed-off-by: Radostin Stoyanov <rstoyanov@fedoraproject.org>
72 lines
2.1 KiB
Bash
Executable File
72 lines
2.1 KiB
Bash
Executable File
#!/bin/bash
|
|
set -x -e -o pipefail
|
|
|
|
export SKIP_CI_TEST=1
|
|
|
|
./run-ci-tests.sh
|
|
|
|
cd ../../
|
|
|
|
make install PREFIX=/usr
|
|
|
|
criu --version
|
|
|
|
# FIXME: Disable checkpoint/restore of cgroups
|
|
# https://github.com/checkpoint-restore/criu/issues/2091
|
|
mkdir -p /etc/criu
|
|
echo "manage-cgroups ignore" > /etc/criu/runc.conf
|
|
sed -i 's/#runtime\s*=\s*.*/runtime = "runc"/' /usr/share/containers/containers.conf
|
|
|
|
# Test checkpoint/restore with action script
|
|
echo "action-script /usr/bin/true" | sudo tee /etc/criu/default.conf
|
|
|
|
cat /proc/self/mountinfo
|
|
podman info
|
|
|
|
podman run --name cr -d docker.io/library/alpine /bin/sh -c 'i=0; while true; do echo $i; i=$(expr $i + 1); sleep 1; done'
|
|
|
|
# Show criu logs in case of error
|
|
trap 'cat /var/lib/containers/storage/overlay-containers/*/userdata/*.log' EXIT
|
|
|
|
sleep 1
|
|
for i in $(seq 20); do
|
|
echo "Test $i for podman container checkpoint"
|
|
podman exec cr ps axf
|
|
podman logs cr
|
|
[ "$(podman ps -f name=cr -q -f status=running | wc -l)" -eq "1" ]
|
|
podman container checkpoint cr
|
|
[ "$(podman ps -f name=cr -q -f status=running | wc -l)" -eq "0" ]
|
|
podman ps -a
|
|
podman container restore cr
|
|
[ "$(podman ps -f name=cr -q -f status=running | wc -l)" -eq "1" ]
|
|
podman logs cr
|
|
done
|
|
|
|
for i in $(seq 20); do
|
|
echo "Test $i for podman container checkpoint --export"
|
|
podman ps -a
|
|
podman exec cr ps axf
|
|
podman logs cr
|
|
[ "$(podman ps -f name=cr -q -f status=running | wc -l)" -eq "1" ]
|
|
podman container checkpoint -l --export /tmp/chkpt.tar.gz
|
|
[ "$(podman ps -f name=cr -q -f status=running | wc -l)" -eq "0" ]
|
|
podman ps -a
|
|
podman rm -fa
|
|
podman ps -a
|
|
podman container restore --import /tmp/chkpt.tar.gz
|
|
[ "$(podman ps -f name=cr -q -f status=running | wc -l)" -eq "1" ]
|
|
podman container restore --name cr2 --import /tmp/chkpt.tar.gz
|
|
[ "$(podman ps -f name=cr2 -q -f status=running | wc -l)" -eq "1" ]
|
|
podman ps -a
|
|
podman logs cr
|
|
podman logs cr2
|
|
podman ps -a
|
|
podman rm -fa
|
|
podman ps -a
|
|
podman container restore --import /tmp/chkpt.tar.gz
|
|
[ "$(podman ps -f name=cr -q -f status=running | wc -l)" -eq "1" ]
|
|
podman ps -a
|
|
rm -f /tmp/chkpt.tar.gz
|
|
done
|
|
|
|
trap 'echo PASS' EXIT |