firejail/test/fnettrace/fnettrace-dns.exp
Kelvin M. Klann 167a0ea74a Fix misc whitespace
Command used to check for whitespace errors:

    $ git diff --check 0.9.78..
2026-02-23 13:20:38 -03:00

26 lines
468 B
Text
Executable file

#!/usr/bin/expect -f
# This file is part of Firejail project
# Copyright (C) 2014-2026 Firejail Authors
# License GPL v2
set timeout 10
cd /home
spawn $env(SHELL)
match_max 100000
send -- "cat /tmp/output\r"
expect {
timeout {puts "TESTING ERROR 0\n";exit}
-re "DNS trace for"
}
expect {
timeout {puts "TESTING ERROR 1\n";exit}
-re "DNS dns.quad9.net"
}
expect {
timeout {puts "TESTING ERROR 2\n";exit}
-re "type 1"
}
after 100
puts "\nexpect script done\r"