mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-24 10:58:36 +00:00
Not supported for a while. Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org> Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com> Signed-off-by: Andrei Vagin <avagin@virtuozzo.com>
84 lines
2.1 KiB
Bash
Executable File
84 lines
2.1 KiB
Bash
Executable File
#!/bin/sh
|
|
set -x -e
|
|
|
|
TRAVIS_PKGS="protobuf-c-compiler libprotobuf-c0-dev libaio-dev
|
|
libprotobuf-dev protobuf-compiler python-ipaddr libcap-dev
|
|
libnl-3-dev gcc-multilib libc6-dev-i386 gdb bash python-protobuf
|
|
libnet-dev util-linux"
|
|
|
|
travis_prep () {
|
|
[ -n "$SKIP_TRAVIS_PREP" ] && return
|
|
|
|
cd ../../
|
|
|
|
service apport stop
|
|
|
|
apt-get update -qq
|
|
apt-get install -qq $TRAVIS_PKGS
|
|
if [ "$CLANG" = "1" ]; then
|
|
apt-get install -qq clang
|
|
MAKE_VARS=CC=clang
|
|
fi
|
|
chmod a+x $HOME
|
|
}
|
|
|
|
travis_prep
|
|
|
|
ulimit -c unlimited
|
|
echo "|`pwd`/test/abrt.sh %P %p %s %e" > /proc/sys/kernel/core_pattern
|
|
|
|
export GCOV
|
|
make ${MAKE_VARS}
|
|
make ${MAKE_VARS} -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
|
|
# The 3.19 Ubuntu kernel has a bug. When pagemap are read for a few vma-s
|
|
# for one read call, it returns incorrect data.
|
|
# https://github.com/xemul/criu/issues/207
|
|
export CRIU_PMC_OFF=1
|
|
|
|
chmod 0777 test/
|
|
chmod 0777 test/zdtm/static
|
|
chmod 0777 test/zdtm/transition
|
|
|
|
./test/zdtm.py run -a -p 2
|
|
|
|
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 --noauto-dedup
|
|
./test/zdtm.py run -t zdtm/transition/maps007 --pre 2 --page-server
|
|
./test/zdtm.py run -t zdtm/transition/maps007 --pre 2 --page-server --dedup
|
|
|
|
./test/zdtm.py run -t zdtm/static/socket-tcp-local --norst
|
|
|
|
ip net add test
|
|
./test/zdtm.py run -t zdtm/static/env00 -f h --join-ns
|
|
|
|
# RPC testing
|
|
./test/zdtm.py run -t zdtm/static/env00 --rpc # Basic
|
|
./test/zdtm.py run -t zdtm/static/ptrace_sig -f h --rpc # Error handling (crfail test)
|
|
|
|
pip install flake8
|
|
make lint
|
|
|
|
# Check that help output fits into 80 columns
|
|
WIDTH=$(./criu/criu --help | wc --max-line-length)
|
|
if [ "$WIDTH" -gt 80 ]; then
|
|
echo "criu --help output does not obey 80 characters line width!"
|
|
exit 1
|
|
fi
|