ci: disable broken tests until fixed

Broken tests are being tracked at

 * https://github.com/checkpoint-restore/criu/issues/1669
 * https://github.com/checkpoint-restore/criu/issues/1635

This also enables previously disabled BPF related tests:

 * https://github.com/checkpoint-restore/criu/issues/1354

Signed-off-by: Adrian Reber <areber@redhat.com>
This commit is contained in:
Adrian Reber 2021-12-03 16:48:36 +00:00 committed by Andrei Vagin
parent 4ab2facb24
commit a52185ffe3
2 changed files with 11 additions and 3 deletions

View file

@ -28,6 +28,14 @@ fi
./test/zdtm.py run -t zdtm/static/maps04 --fault 131 --keep-going --report report --pre 2:1 || fail
./test/zdtm.py run -t zdtm/transition/maps008 --fault 131 --keep-going --report report --pre 2:1 || fail
./test/zdtm.py run -t zdtm/static/maps01 --fault 132 -f h || fail
# Error injection with --fault 134 fails on newer CPUs used in Circle CI on EC2
# Skip the --fault 134 tests
# https://github.com/checkpoint-restore/criu/issues/1635
if [ -n "$CIRCLECI" ]; then
exit 0
fi
# 134 is corrupting extended registers set, should run in a sub-thread (fpu03)
# without restore (that will check if parasite corrupts extended registers)
./test/zdtm.py run -t zdtm/static/fpu03 --fault 134 -f h --norst || fail