cfg80211 was modified to allow the Multiple BSSID Index element to be
included in the IEs for a nontransmitted BSS. Update the validation step
in this test case to allow that different with the IEs in the Beacon
frame (transmitted BSS).
Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
if 71 in list(beacon_ie.keys()):
ie_list = list(beacon_ie.keys())
ie_list.remove(71)
- if sorted(ie_list) != sorted(list(nontx_beacon_ie.keys())):
+ nontx_ie_list = list(nontx_beacon_ie.keys())
+ try:
+ nontx_ie_list.remove(85)
+ except ValueError:
+ pass
+ if sorted(ie_list) != sorted(nontx_ie_list):
raise Exception("check IE failed")
def elem_fms1():