aboutsummaryrefslogtreecommitdiffstats
path: root/test/firemon-route.exp
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2016-11-09 19:17:06 -0500
committerLibravatar netblue30 <netblue30@yahoo.com>2016-11-09 19:17:06 -0500
commit35004af7d8f6ff19908fb89e25e532113afa26f4 (patch)
tree991c7c279e0629e3de36a1d9453ab2513a38be1d /test/firemon-route.exp
parentbugfix: crashing vlc when pressing Ctrl-O (diff)
downloadfirejail-35004af7d8f6ff19908fb89e25e532113afa26f4.tar.gz
firejail-35004af7d8f6ff19908fb89e25e532113afa26f4.tar.zst
firejail-35004af7d8f6ff19908fb89e25e532113afa26f4.zip
testing
Diffstat (limited to 'test/firemon-route.exp')
-rwxr-xr-xtest/firemon-route.exp33
1 files changed, 0 insertions, 33 deletions
diff --git a/test/firemon-route.exp b/test/firemon-route.exp
deleted file mode 100755
index a48116675..000000000
--- a/test/firemon-route.exp
+++ /dev/null
@@ -1,33 +0,0 @@
1#!/usr/bin/expect -f
2
3set timeout 10
4spawn $env(SHELL)
5match_max 100000
6
7send -- "firejail\r"
8expect {
9 timeout {puts "TESTING ERROR 0\n";exit}
10 "Child process initialized"
11}
12sleep 1
13
14spawn $env(SHELL)
15send -- "firemon --route\r"
16expect {
17 timeout {puts "TESTING ERROR 1\n";exit}
18 "0.0.0.0/0 via 192.168.1.1, dev eth0, metric 0" {puts "Debian testing\n";}
19 "0.0.0.0/0 via 192.168.1.1, dev enp0s3, metric 1024" {puts "Centos 7 testing\n";}
20 "0.0.0.0/0 via 192.168.1.1, dev enp0s3, metric 0" {puts "OpenSUSE testing\n";}
21 "0.0.0.0/0 via 192.168.1.1, dev enp0s3, metric 100" {puts "Arch testing\n";}
22}
23expect {
24 timeout {puts "TESTING ERROR 2\n";exit}
25 "10.10.30.0/24, dev br1, scope link src 10.10.30.1"
26}
27expect {
28 timeout {puts "TESTING ERROR 3\n";exit}
29 "10.10.50.0/24, dev br3, scope link src 10.10.50.1"
30}
31sleep 1
32
33puts "\n"