aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorLibravatar root <root@debian>2016-02-09 11:34:51 -0500
committerLibravatar root <root@debian>2016-02-09 11:34:51 -0500
commit1126db20f0c184a2c37fbdb56858aff12379e766 (patch)
treeb4a4fb01a04ae147c58b0d173d314b3ce013c22c /test
parentisolate command name problem (diff)
downloadfirejail-1126db20f0c184a2c37fbdb56858aff12379e766.tar.gz
firejail-1126db20f0c184a2c37fbdb56858aff12379e766.tar.zst
firejail-1126db20f0c184a2c37fbdb56858aff12379e766.zip
chroot testing
Diffstat (limited to 'test')
-rwxr-xr-xtest/chroot-resolvconf.exp14
-rwxr-xr-xtest/test-root.sh7
2 files changed, 21 insertions, 0 deletions
diff --git a/test/chroot-resolvconf.exp b/test/chroot-resolvconf.exp
new file mode 100755
index 000000000..2d0da2fb0
--- /dev/null
+++ b/test/chroot-resolvconf.exp
@@ -0,0 +1,14 @@
1#!/usr/bin/expect -f
2
3set timeout 10
4spawn $env(SHELL)
5match_max 100000
6
7send -- "firejail --chroot=/tmp/chroot /bin/bash\r"
8expect {
9 timeout {puts "TESTING ERROR 0\n";exit}
10 "invalid /tmp/chroot/etc/resolv.conf file"
11}
12
13puts "\nall done\n"
14
diff --git a/test/test-root.sh b/test/test-root.sh
index ee3b7aeb2..c5441037b 100755
--- a/test/test-root.sh
+++ b/test/test-root.sh
@@ -72,3 +72,10 @@ then
72 echo "TESTING: firemon --cgroup" 72 echo "TESTING: firemon --cgroup"
73 ./firemon-cgroup.exp 73 ./firemon-cgroup.exp
74fi 74fi
75
76echo "TESTING: chroot resolv.conf"
77rm -f tmpfile
78touch tmpfile
79ln -s tmp /tmp/chroot/etc/resolv.conf
80./chroot-resolvconf.exp
81rm -f tmpfile \ No newline at end of file