firejail/test/root/option_tmpfs.exp
Fred-Barclay 6181f75e3f
Housekeeping
Make sure all files end with a newline
Strip extra newlines and trailing whitespace from files
2019-02-17 17:04:02 -06:00

39 lines
651 B
Text
Executable file

#!/usr/bin/expect -f
set timeout 10
spawn $env(SHELL)
match_max 100000
send -- "firejail --tmpfs=/var\r"
expect {
timeout {puts "TESTING ERROR 0\n";exit}
"Child process initialized"
}
sleep 1
send -- "ls -l /var;pwd\r"
expect {
timeout {puts "TESTING ERROR 1\n";exit}
"total 0"
}
after 100
send -- "exit\r"
sleep 1
send -- "firejail --debug-check-filename --tmpfs=\"bla&&bla\"\r"
expect {
timeout {puts "TESTING ERROR 13.1\n";exit}
"Checking filename bla&&bla"
}
expect {
timeout {puts "TESTING ERROR 13.2\n";exit}
"Error:"
}
expect {
timeout {puts "TESTING ERROR 13.3\n";exit}
"is an invalid filename"
}
after 100
puts "\nall done\n"