2020-04-18 22:28:24 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
2016-08-07 17:22:53 +03:00
|
|
|
# Check lazy-pages
|
|
|
|
set -e
|
|
|
|
source `dirname $0`/criu-lib.sh
|
|
|
|
prep
|
2016-12-01 16:59:00 +03:00
|
|
|
|
2018-10-02 15:20:30 +03:00
|
|
|
source `dirname $0`/criu-lazy-common.sh
|
2016-12-01 16:59:00 +03:00
|
|
|
|
|
|
|
# lazy restore from images
|
2017-06-22 13:29:22 +03:00
|
|
|
./test/zdtm.py run --all --keep-going --report report --parallel 4 \
|
|
|
|
--lazy-pages $LAZY_EXCLUDE || fail
|
|
|
|
|
|
|
|
# During pre-dump + lazy-pages we leave VM_NOHUGEPAGE set
|
2022-05-05 11:25:40 +03:00
|
|
|
LAZY_EXCLUDE="$LAZY_EXCLUDE -x maps02 -x maps09 -x maps10"
|
2016-12-01 16:59:00 +03:00
|
|
|
|
|
|
|
# lazy restore from images with pre-dumps
|
2017-06-22 13:29:22 +03:00
|
|
|
./test/zdtm.py run --all --keep-going --report report --parallel 4 \
|
|
|
|
--lazy-pages --pre 2 $LAZY_EXCLUDE || fail
|