tests: Fix dfs_cac_restart_on_enable false negative by using common finalizer

dfs_cac_restart_on_enable fails with this message.

---------------
START dfs_cac_restart_on_enable 1/1
wlan0: Country code not reset back to 00: is FI
wlan0: Country code cleared back to 00
FAIL dfs_cac_restart_on_enable 3.037694 2019-05-28 01:35:07.548390
failed tests: dfs_cac_restart_on_enable
---------------

This patch fixes the false negative.

Signed-off-by: Masashi Honma <masashi.honma@gmail.com>
This commit is contained in:
Masashi Honma 2019-05-30 17:05:53 +09:00 committed by Jouni Malinen
parent a1f3f88ac7
commit 7c2102acbb

View file

@ -507,7 +507,4 @@ def test_dfs_cac_restart_on_enable(dev, apdev):
hapd.disable()
finally:
if hapd:
hapd.request("DISABLE")
subprocess.call(['iw', 'reg', 'set', '00'])
time.sleep(0.1)
clear_regdom(hapd, dev)