aboutsummaryrefslogtreecommitdiffstats
path: root/test/seccomp-bad-empty.exp
blob: 53b5c2e21a2f7e7750845f2e892972fdbb3810b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/expect -f

set timeout 10
spawn $env(SHELL)
match_max 100000

send --  "firejail --seccomp=\r"
expect {
	timeout {puts "TESTING ERROR 0\n";exit}
	"Error: empty syscall lists are not allowed"
}

send --  "firejail --seccomp.drop=\r"
expect {
	timeout {puts "TESTING ERROR 2\n";exit}
	"Error: empty syscall lists are not allowed"
}

send --  "firejail --seccomp.keep=\r"
expect {
	timeout {puts "TESTING ERROR 4\n";exit}
	"Error: empty syscall lists are not allowed"
}

send --  "firejail --profile=seccomp-bad-empty.profile\r"
expect {
	timeout {puts "TESTING ERROR 6\n";exit}
	"Error: line 1 in the custom profile is invalid"
}

send --  "firejail --profile=seccomp-bad-empty2.profile\r"
expect {
	timeout {puts "TESTING ERROR 7\n";exit}
	"Error: line 1 in the custom profile is invalid"
}
sleep 1
puts "\n"