aboutsummaryrefslogtreecommitdiffstats
path: root/test/seccomp-dualfilter.exp
blob: b497be5ea29820820246aed084c267eb12da9397 (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 ../src/tools/syscall_test mount\r"
expect {
	timeout {puts "TESTING ERROR 0\n";exit}
	"Child process initialized"
}
expect {
	timeout {puts "TESTING ERROR 1\n";exit}
	"before mount"
}
expect {
	timeout {puts "TESTING ERROR 2\n";exit}
	"after mount" {puts "TESTING ERROR 2.1\n";exit}
	"parent is shutting down"
}
sleep 1

send -- "firejail ../src/tools/syscall_test32 mount\r"
expect {
	timeout {puts "TESTING ERROR 3\n";exit}
	"Child process initialized"
}
expect {
	timeout {puts "TESTING ERROR 4\n";exit}
	"before mount"
}
expect {
	timeout {puts "TESTING ERROR 5\n";exit}
	"after mount" {puts "TESTING ERROR 5.1\n";exit}
	"parent is shutting down"
}

puts "\nall done\n"