From a5c2e8cd86354c67f201c45e2a3bb1a5491064dc Mon Sep 17 00:00:00 2001 From: Pavel Emelyanov Date: Wed, 23 Dec 2015 17:12:53 +0300 Subject: [PATCH] jenkins: Mount binfmt misc in run_ct The mountpoints.c test creates such mount and criu will try to kerndat-check one, so this fs should be on "host". Signed-off-by: Pavel Emelyanov --- test/jenkins/_run_ct | 1 + 1 file changed, 1 insertion(+) diff --git a/test/jenkins/_run_ct b/test/jenkins/_run_ct index 98d880577..0c47c1c96 100755 --- a/test/jenkins/_run_ct +++ b/test/jenkins/_run_ct @@ -4,4 +4,5 @@ set -e mount --make-rprivate / umount -l /proc mount -t proc proc /proc/ +mount -t binfmt_misc none /proc/sys/fs/binfmt_misc/ exec "$@"