aboutsummaryrefslogtreecommitdiffstats
path: root/test/fs/whitelist-readonly.exp
blob: 0e5794a17d532e4d617bc817896070b1fdb6f316 (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
#!/usr/bin/expect -f
# This file is part of Firejail project
# Copyright (C) 2014-2020 Firejail Authors
# License GPL v2

set timeout 10
spawn $env(SHELL)
match_max 100000


send -- "firejail --noprofile --whitelist=~/_firejail_test_dir --read-only=~\r"
expect {
	timeout {puts "TESTING ERROR 0\n";exit}
	"Child process initialized"
}
sleep 1

send -- "echo mytest > ~/_firejail_test_dir/a\r"
expect {
	timeout {puts "TESTING ERROR 1\n";exit}
	"Read-only file system"
}
after 100

send -- "exit\r"
sleep 1

puts "\nall done\n"