mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2025-01-18 19:04:02 -05:00
tests: Fix ap_acs_vht160_scan_disable false negative by using common finalizer
ap_acs_vht160_scan_disable fails with this message. --------------- wlan0: Country code not reset back to 00: is ZA 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
8ddf0eca3d
commit
794d35a4e1
@ -9,7 +9,7 @@ logger = logging.getLogger()
|
|||||||
import time
|
import time
|
||||||
|
|
||||||
import hostapd
|
import hostapd
|
||||||
from utils import skip_with_fips, alloc_fail, fail_test, HwsimSkip
|
from utils import skip_with_fips, alloc_fail, fail_test, HwsimSkip, clear_regdom
|
||||||
from test_ap_ht import clear_scan_cache
|
from test_ap_ht import clear_scan_cache
|
||||||
from test_dfs import wait_dfs_event
|
from test_dfs import wait_dfs_event
|
||||||
|
|
||||||
@ -314,9 +314,7 @@ def test_ap_acs_vht160_scan_disable(dev, apdev):
|
|||||||
params['ieee80211h'] = '1'
|
params['ieee80211h'] = '1'
|
||||||
hapd = hostapd.add_ap(apdev[0], params, wait_enabled=False)
|
hapd = hostapd.add_ap(apdev[0], params, wait_enabled=False)
|
||||||
time.sleep(3)
|
time.sleep(3)
|
||||||
hapd.request("DISABLE")
|
clear_regdom(hapd, dev)
|
||||||
hostapd.cmd_execute(apdev[0], ['iw', 'reg', 'set', '00'])
|
|
||||||
time.sleep(0.1)
|
|
||||||
|
|
||||||
def test_ap_acs_bias(dev, apdev):
|
def test_ap_acs_bias(dev, apdev):
|
||||||
"""Automatic channel selection with bias values"""
|
"""Automatic channel selection with bias values"""
|
||||||
|
Loading…
Reference in New Issue
Block a user