mirror of
https://github.com/Telecominfraproject/wlan-lanforge-scripts.git
synced 2025-11-03 12:18:00 +00:00
lf_check.py : if the radio dictionary is empty to not error.
ct_us_003_tests.json updated for ASUS AP ct_003_AX88U_dut.json : added the ASUS AP configuration Signed-off-by: Chuck SmileyRekiere <chuck.smileyrekiere@candelatech.com>
This commit is contained in:
@@ -760,9 +760,10 @@ NOTE: Diagrams are links in dashboard""".format(ip_qa=ip,qa_url=qa_url)
|
||||
print(self.test_dict)
|
||||
|
||||
# loop through radios (For future functionality based on radio)
|
||||
for radio in self.radio_dict:
|
||||
# This has been changed to reflect the Radio configuriaton of LANforge, for now print
|
||||
print("rig json config: RADIO: {radio} DRIVER: {driver} CAPABILITIES {cap} MAX_STA {max_sta} MAX_VAP {max_vap} MAX_VIFS {max_vif}".format(
|
||||
if self.radio_dict:
|
||||
for radio in self.radio_dict:
|
||||
# This has been changed to reflect the Radio configuriaton of LANforge, for now print
|
||||
print("rig json config: RADIO: {radio} DRIVER: {driver} CAPABILITIES {cap} MAX_STA {max_sta} MAX_VAP {max_vap} MAX_VIFS {max_vif}".format(
|
||||
radio=self.radio_dict[radio]['RADIO'],driver=self.radio_dict[radio]['DRIVER'],cap=self.radio_dict[radio]['CAPABILITIES'],
|
||||
max_sta=self.radio_dict[radio]['MAX_STA'],max_vap=self.radio_dict[radio]['MAX_VAP'],max_vif=self.radio_dict[radio]['MAX_VIFS']))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user