aboutsummaryrefslogtreecommitdiffstats
path: root/test/chroot/chroot.sh
blob: ac7bc6a548cd66f50fcb3d148e0447e1deaea23b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash
# This file is part of Firejail project
# Copyright (C) 2014-2019 Firejail Authors
# License GPL v2

export MALLOC_CHECK_=3
export MALLOC_PERTURB_=$(($RANDOM % 255 + 1))

rm -f unchroot
gcc -o unchroot unchroot.c
sudo ./configure

echo "TESTING: chroot (test/chroot/fs_chroot.exp)"
./fs_chroot.exp

echo "TESTING: unchroot as root (test/chroot/unchroot-as-root.exp)"
sudo ./unchroot-as-root.exp



rm -f unchroot