mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-22 01:51:51 +00:00
We permanently have issues like this: ./test/jenkins/criu-iter.sh: 3: source: not found It looks like a good idea to use one shell to run our jenkins scripts. Signed-off-by: Andrei Vagin <avagin@gmail.com>
10 lines
358 B
Bash
Executable File
10 lines
358 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Make one regular C/R cycle
|
|
set -e
|
|
source `dirname $0`/criu-lib.sh
|
|
prep
|
|
mkdir -p test.up test.work
|
|
mount -t overlay overlay -olowerdir=test,upperdir=test.up,workdir=test.work test
|
|
./test/zdtm.py run --all --keep-going --report report --parallel 4 -x inotify -x mntns_open -x socket -x sk-unix -x unlink -x fsnotify -x fanotify -x ghost || fail
|