mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-19 09:35:12 +00:00
Move static and transition into zdtm top. We can't move all the micro tests themselves, as we need to distinguish static from non static (zdtm.py makes additional checks on static ones). Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com>
14 lines
248 B
Bash
Executable file
14 lines
248 B
Bash
Executable file
#!/bin/bash
|
|
|
|
[ "$1" == "--clean" -o "$1" == "--pre-restore" ] || exit 0
|
|
|
|
tname=$(mktemp -d cgclean.XXXXXX)
|
|
mount -t cgroup none $tname -o "none,name=zdtmtst"
|
|
|
|
echo "Cleaning $tname"
|
|
set +e
|
|
rmdir "$tname/test"
|
|
set -e
|
|
|
|
umount "$tname"
|
|
rmdir "$tname"
|