tests: Fix ap_vht80_csa false negative by using common finalizer
ap_vht80_csa fails with this message. --------------- wlan0: Country code not reset back to 00: is US wlan0: Country code cleared back to 00 --------------- This patch fixes the issue. Signed-off-by: Masashi Honma <masashi.honma@gmail.com>
This commit is contained in:
parent
c3aa6e274d
commit
fec2aea7b3
1 changed files with 1 additions and 4 deletions
|
@ -752,10 +752,7 @@ def test_ap_vht80_csa(dev, apdev):
|
||||||
raise
|
raise
|
||||||
finally:
|
finally:
|
||||||
dev[0].request("DISCONNECT")
|
dev[0].request("DISCONNECT")
|
||||||
if hapd:
|
clear_regdom(hapd, dev)
|
||||||
hapd.request("DISABLE")
|
|
||||||
subprocess.call(['iw', 'reg', 'set', '00'])
|
|
||||||
dev[0].flush_scan_cache()
|
|
||||||
|
|
||||||
def test_ap_vht_csa_vht40(dev, apdev):
|
def test_ap_vht_csa_vht40(dev, apdev):
|
||||||
"""VHT CSA with VHT40 getting enabled"""
|
"""VHT CSA with VHT40 getting enabled"""
|
||||||
|
|
Loading…
Reference in a new issue