aboutsummaryrefslogtreecommitdiffstats
path: root/test/net_mtu.exp
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2015-10-18 11:07:49 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2015-10-18 11:07:49 -0400
commit6d39f22968c7cf2a51cb162664589770c84aac69 (patch)
tree8a717a0324b43a8134182ceeee6455b59535b465 /test/net_mtu.exp
parent--hostname (diff)
downloadfirejail-6d39f22968c7cf2a51cb162664589770c84aac69.tar.gz
firejail-6d39f22968c7cf2a51cb162664589770c84aac69.tar.zst
firejail-6d39f22968c7cf2a51cb162664589770c84aac69.zip
testing
Diffstat (limited to 'test/net_mtu.exp')
-rwxr-xr-xtest/net_mtu.exp30
1 files changed, 30 insertions, 0 deletions
diff --git a/test/net_mtu.exp b/test/net_mtu.exp
new file mode 100755
index 000000000..2940241c1
--- /dev/null
+++ b/test/net_mtu.exp
@@ -0,0 +1,30 @@
1#!/usr/bin/expect -f
2
3set timeout 10
4spawn $env(SHELL)
5match_max 100000
6
7# check ip address
8send -- "firejail --net=br0 --mtu=1000\r"
9expect {
10 timeout {puts "TESTING ERROR 1\n";exit}
11 "Child process initialized"
12}
13sleep 1
14
15send -- "ip link show\r"
16expect {
17 timeout {puts "TESTING ERROR 2\n";exit}
18 "eth0"
19}
20expect {
21 timeout {puts "TESTING ERROR 3\n";exit}
22 "mtu 1000"
23}
24expect {
25 timeout {puts "TESTING ERROR 4\n";exit}
26 "state UP"
27}
28
29puts "\nall done\n"
30