summaryrefslogtreecommitdiff
path: root/validation/test/av_home/av_home.py
diff options
context:
space:
mode:
Diffstat (limited to 'validation/test/av_home/av_home.py')
-rwxr-xr-xvalidation/test/av_home/av_home.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/validation/test/av_home/av_home.py b/validation/test/av_home/av_home.py
index 2ec9f0330f..3ccc0757f4 100755
--- a/validation/test/av_home/av_home.py
+++ b/validation/test/av_home/av_home.py
@@ -5,12 +5,14 @@
import re, os, sys
import ConfigParser
import av_home_attr
+import av_mme
def master_script():
print ("Executing master script")
test_init ()
print ("Sending MME for environment discovery to " + av_home_attr.plug_mac +
" through " + av_home_attr.iface + " ...")
+ av_mme.get_network_env()
raw_input ("Press enter when slave script has been launched")
print ("Executing ping on slave PC ("+ av_home_attr.addr +")...")
print ("Executing upload iperf test on " + av_home_attr.addr + " ...")
@@ -20,6 +22,9 @@ def slave_script():
print ("Executing slave script")
test_init ()
print ("Sending MME for environment discovery...")
+ print ("Sending MME for environment discovery to " + av_home_attr.plug_mac +
+ " through " + av_home_attr.iface + " ...")
+ av_mme.get_network_env()
print ("Starting iperf server...")
raw_input ("Press enter when master script has finished upload iperf test")
print ("Executing upload iperf test...")