print statements edited

This commit is contained in:
Dipti
2020-12-08 11:56:44 -08:00
parent 8b47cde725
commit 2f6e57bc7c
5 changed files with 16 additions and 7 deletions

View File

@@ -50,8 +50,10 @@ class IPv4Test(LFCliBase):
self.station_profile.set_command_param("set_port", "report_timer", 1500)
self.station_profile.set_command_flag("set_port", "rpt_timer", 1)
self.station_profile.create(radio="wiphy0", sta_names_=self.sta_list, debug=self.debug)
self._pass("PASS: Station build finished")
self.station_profile.admin_up()
print(" ",flush=True)
time.sleep(15)
self._pass("Station build finished",print_=True)
def cleanup(self, sta_list):
self.station_profile.cleanup(sta_list)

View File

@@ -51,8 +51,9 @@ class IPv4Test(LFCliBase):
self.station_profile.set_command_param("set_port", "report_timer", 1500)
self.station_profile.set_command_flag("set_port", "rpt_timer", 1)
self.station_profile.create(radio=self.radio, sta_names_=self.sta_list, debug=self.debug)
self._pass("PASS: Station build finished")
print("Test passed.")
self.station_profile.admin_up()
time.sleep(15)
self._pass("Station build finished", print_=True)
exit(0)
def cleanup(self, sta_list):

View File

@@ -51,7 +51,9 @@ class IPv4Test(LFCliBase):
self.station_profile.set_command_param("set_port", "report_timer", 1500)
self.station_profile.set_command_flag("set_port", "rpt_timer", 1)
self.station_profile.create(radio=self.radio, sta_names_=self.sta_list, debug=self.debug)
self._pass("PASS: Station build finished")
self.station_profile.admin_up()
self._pass("Station build finished",print_=True)
time.sleep(15)
exit(0)
def cleanup(self, sta_list):

View File

@@ -51,7 +51,9 @@ class IPv4Test(LFCliBase):
self.station_profile.set_command_param("set_port", "report_timer", 1500)
self.station_profile.set_command_flag("set_port", "rpt_timer", 1)
self.station_profile.create(radio=self.radio, sta_names_=self.sta_list, debug=self.debug)
self._pass("PASS: Station build finished")
self.station_profile.admin_up()
time.sleep(15)
self._pass("Station build finished",print_=True)
exit(0)
def cleanup(self, sta_list):

View File

@@ -52,8 +52,10 @@ class IPv4Test(LFCliBase):
self.station_profile.set_command_flag("set_port", "rpt_timer", 1)
self.station_profile.create(radio=self.radio, sta_names_=self.sta_list, debug=self.debug)
self.station_profile.admin_up()
self._pass("PASS: Station build finished")
self._pass("Station build finished",print_=True)
time.sleep(10)
print(" ",flush=True)
time.sleep(10)
exit(0)
def cleanup(self, sta_list):