aboutsummaryrefslogtreecommitdiffstats
path: root/test/firemon-arp.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-arp.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-arp.exp')
-rwxr-xr-xtest/firemon-arp.exp34
1 files changed, 0 insertions, 34 deletions
diff --git a/test/firemon-arp.exp b/test/firemon-arp.exp
deleted file mode 100755
index 3fc8c2aee..000000000
--- a/test/firemon-arp.exp
+++ /dev/null
@@ -1,34 +0,0 @@
1#!/usr/bin/expect -f
2
3set timeout 10
4spawn $env(SHELL)
5match_max 100000
6
7send -- "ping -c 3 192.168.1.1\r"
8expect {
9 timeout {puts "TESTING ERROR 0\n";exit}
10 "3 packets transmitted"
11}
12sleep 1
13
14send -- "firejail\r"
15expect {
16 timeout {puts "TESTING ERROR 1\n";exit}
17 "Child process initialized"
18}
19sleep 1
20
21spawn $env(SHELL)
22send -- "firemon --arp\r"
23expect {
24 timeout {puts "TESTING ERROR 2\n";exit}
25 "192.168.1.1 dev eth0 lladdr" {puts "Debian testing\n";}
26 "192.168.1.1 dev enp0s3 lladdr" {puts "Centos 7 testing\n";}
27}
28expect {
29 timeout {puts "TESTING ERROR 3\n";exit}
30 "REACHABLE"
31}
32sleep 1
33
34puts "\n"