aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2016-05-24 11:12:03 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2016-05-24 11:12:03 -0400
commit0bc571120af013407e448d9935e8be5189bc2765 (patch)
treee225c168606306b275d851dc90e6e1515300524f /test
parent0.9.40 testing (diff)
downloadfirejail-0bc571120af013407e448d9935e8be5189bc2765.tar.gz
firejail-0bc571120af013407e448d9935e8be5189bc2765.tar.zst
firejail-0bc571120af013407e448d9935e8be5189bc2765.zip
0.9.40 testing
Diffstat (limited to 'test')
-rwxr-xr-xtest/filters/noroot.exp1
-rwxr-xr-xtest/filters/seccomp-su.exp6
2 files changed, 5 insertions, 2 deletions
diff --git a/test/filters/noroot.exp b/test/filters/noroot.exp
index bbd2291c8..1e08cee12 100755
--- a/test/filters/noroot.exp
+++ b/test/filters/noroot.exp
@@ -49,6 +49,7 @@ expect {
49 timeout {puts "TESTING ERROR 8\n";exit} 49 timeout {puts "TESTING ERROR 8\n";exit}
50 "effective uid is not 0, is sudo installed setuid root?" { puts "OK\n";} 50 "effective uid is not 0, is sudo installed setuid root?" { puts "OK\n";}
51 "sudo must be owned by uid 0 and have the setuid bit set" { puts "OK\n";} 51 "sudo must be owned by uid 0 and have the setuid bit set" { puts "OK\n";}
52 "Bad system call" { puts "OK\n";}
52} 53}
53send -- "cat /proc/self/uid_map | wc -l\r" 54send -- "cat /proc/self/uid_map | wc -l\r"
54expect { 55expect {
diff --git a/test/filters/seccomp-su.exp b/test/filters/seccomp-su.exp
index 003f3df99..e2ab050bf 100755
--- a/test/filters/seccomp-su.exp
+++ b/test/filters/seccomp-su.exp
@@ -17,13 +17,15 @@ sleep 2
17send -- "sudo su -\r" 17send -- "sudo su -\r"
18expect { 18expect {
19 timeout {puts "TESTING ERROR 1\n";exit} 19 timeout {puts "TESTING ERROR 1\n";exit}
20 "effective uid is not 0" 20 "effective uid is not 0" {puts "OK\n"}
21 "Bad system call" {puts "OK\n"}
21} 22}
22 23
23send -- "sudo ls\r" 24send -- "sudo ls\r"
24expect { 25expect {
25 timeout {puts "TESTING ERROR 2\n";exit} 26 timeout {puts "TESTING ERROR 2\n";exit}
26 "effective uid is not 0" 27 "effective uid is not 0" {puts "OK\n"}
28 "Bad system call" {puts "OK\n"}
27} 29}
28 30
29send -- "ping google.com\r" 31send -- "ping google.com\r"