mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-28 21:07:43 +00:00
Signed-off-by: Andrew Vagin <avagin@virtuozzo.com> Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com>
43 lines
980 B
Bash
Executable File
43 lines
980 B
Bash
Executable File
#!/bin/sh
|
|
set -x -e
|
|
|
|
cd ../../
|
|
|
|
apt-get update -qq
|
|
apt-get install -qq protobuf-c-compiler libprotobuf-c0-dev libaio-dev libprotobuf-dev protobuf-compiler python-ipaddr libcap-dev libnl-3-dev
|
|
chmod a+x $HOME
|
|
export GCOV=1
|
|
make
|
|
make -C test/zdtm
|
|
|
|
./criu/criu check
|
|
./criu/criu check --all || echo $?
|
|
./criu/criu cpuinfo dump
|
|
./criu/criu cpuinfo check
|
|
|
|
umask 0000
|
|
export SKIP_PREP=1
|
|
|
|
./test/zdtm.py run -a -x 'cgroup*'
|
|
|
|
bash ./test/jenkins/criu-fault.sh
|
|
bash ./test/jenkins/criu-fcg.sh
|
|
bash ./test/jenkins/criu-inhfd.sh
|
|
|
|
make -C test/others/mnt-ext-dev/ run
|
|
make -C test/others/exec/ run
|
|
|
|
./test/zdtm.py run -t zdtm/static/env00 --sibling
|
|
|
|
./test/zdtm.py run -t zdtm/transition/maps007 --pre 2 --dedup
|
|
./test/zdtm.py run -t zdtm/transition/maps007 --pre 2 --page-server
|
|
|
|
./test/zdtm.py run -t zdtm/static/socket-tcp-local --norst
|
|
|
|
ip net add test
|
|
./test/zdtm.py run --unshare -t zdtm/static/env00
|
|
./test/zdtm.py run -t zdtm/static/env00 -f h --join-ns
|
|
|
|
pip install flake8
|
|
make lint
|