mirror of
https://github.com/netblue30/firejail.git
synced 2026-05-15 14:16:14 -06:00
Make sure all files end with a newline Strip extra newlines and trailing whitespace from files
39 lines
651 B
Text
Executable file
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"
|