aboutsummaryrefslogtreecommitdiffstats
path: root/test/firemon-interface.exp
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2016-09-15 09:59:11 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2016-09-15 09:59:11 -0400
commitfc116c063938d5e141d5fbc38e8013d9832ef315 (patch)
tree382b401cc0a9efeda1509a88bd430cd68b741346 /test/firemon-interface.exp
parentfixed /etc/login.def reading on Mageia systems (diff)
downloadfirejail-fc116c063938d5e141d5fbc38e8013d9832ef315.tar.gz
firejail-fc116c063938d5e141d5fbc38e8013d9832ef315.tar.zst
firejail-fc116c063938d5e141d5fbc38e8013d9832ef315.zip
testing
Diffstat (limited to 'test/firemon-interface.exp')
-rwxr-xr-xtest/firemon-interface.exp34
1 files changed, 0 insertions, 34 deletions
diff --git a/test/firemon-interface.exp b/test/firemon-interface.exp
deleted file mode 100755
index 6a82ae41e..000000000
--- a/test/firemon-interface.exp
+++ /dev/null
@@ -1,34 +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 --interface\r"
16expect {
17 timeout {puts "TESTING ERROR 1\n";exit}
18 "lo UP"
19}
20expect {
21 timeout {puts "TESTING ERROR 2\n";exit}
22 "10.10.20.1/29"
23}
24expect {
25 timeout {puts "TESTING ERROR 3\n";exit}
26 "10.10.50.1/24"
27}
28expect {
29 timeout {puts "TESTING ERROR 3\n";exit}
30 "br3"
31}
32sleep 1
33
34puts "\n"