mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-19 09:35:12 +00:00
We want to execute tests in an isolated environment Signed-off-by: Andrew Vagin <avagin@openvz.org> Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
7 lines
95 B
Bash
Executable file
7 lines
95 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
mount --make-rprivate /
|
|
umount -l /proc
|
|
mount -t proc proc /proc/
|
|
exec "$@"
|