2016-02-23 03:23:00 +03:00
|
|
|
#!/bin/sh
|
|
|
|
set -x -e
|
|
|
|
|
2016-07-08 02:18:52 +03:00
|
|
|
cd ../../
|
2016-02-23 03:23:00 +03:00
|
|
|
|
|
|
|
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
|
2016-07-06 05:01:57 +03:00
|
|
|
export GCOV=1
|
|
|
|
make
|
2016-02-23 03:23:00 +03:00
|
|
|
make -C test/zdtm
|
2016-07-06 05:01:59 +03:00
|
|
|
|
|
|
|
./criu/criu check
|
|
|
|
./criu/criu check --all || echo $?
|
|
|
|
./criu/criu cpuinfo dump
|
|
|
|
./criu/criu cpuinfo check
|
|
|
|
|
|
|
|
umask 0000
|
|
|
|
export SKIP_PREP=1
|
|
|
|
|
2016-08-20 03:12:00 +03:00
|
|
|
./test/zdtm.py run -a -x 'cgroup*' -p 2
|
2016-07-06 05:01:59 +03:00
|
|
|
|
|
|
|
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
|
2016-07-14 21:44:18 +03:00
|
|
|
make -C test/others/exec/ run
|
2016-07-06 05:01:59 +03:00
|
|
|
|
|
|
|
./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 -t zdtm/static/env00 -f h --join-ns
|
2016-06-03 05:33:00 +03:00
|
|
|
|
|
|
|
pip install flake8
|
|
|
|
make lint
|