diff --git a/tests/hwsim/test_ap_acs.py b/tests/hwsim/test_ap_acs.py index 0f9bc8caa..fbfecb770 100644 --- a/tests/hwsim/test_ap_acs.py +++ b/tests/hwsim/test_ap_acs.py @@ -6,7 +6,6 @@ import logging logger = logging.getLogger() -import subprocess import time import hostapd @@ -144,7 +143,7 @@ def test_ap_acs_5ghz(dev, apdev): dev[0].request("DISCONNECT") if hapd: hapd.request("DISABLE") - subprocess.call(['iw', 'reg', 'set', '00']) + hostapd.cmd_execute(apdev[0], ['iw', 'reg', 'set', '00']) dev[0].flush_scan_cache() def test_ap_acs_5ghz_40mhz(dev, apdev): @@ -173,7 +172,7 @@ def test_ap_acs_5ghz_40mhz(dev, apdev): dev[0].request("DISCONNECT") if hapd: hapd.request("DISABLE") - subprocess.call(['iw', 'reg', 'set', '00']) + hostapd.cmd_execute(apdev[0], ['iw', 'reg', 'set', '00']) dev[0].flush_scan_cache() def test_ap_acs_vht(dev, apdev): @@ -204,7 +203,7 @@ def test_ap_acs_vht(dev, apdev): dev[0].request("DISCONNECT") if hapd: hapd.request("DISABLE") - subprocess.call(['iw', 'reg', 'set', '00']) + hostapd.cmd_execute(apdev[0], ['iw', 'reg', 'set', '00']) dev[0].flush_scan_cache() def test_ap_acs_bias(dev, apdev): diff --git a/tests/hwsim/test_ap_params.py b/tests/hwsim/test_ap_params.py index bfba5f8df..7fb58a5ad 100644 --- a/tests/hwsim/test_ap_params.py +++ b/tests/hwsim/test_ap_params.py @@ -112,7 +112,7 @@ def test_ap_country(dev, apdev): dev[0].request("DISCONNECT") if hapd: hapd.request("DISABLE") - subprocess.call(['iw', 'reg', 'set', '00']) + hostapd.cmd_execute(apdev[0], ['iw', 'reg', 'set', '00']) dev[0].flush_scan_cache() def test_ap_acl_accept(dev, apdev): @@ -247,7 +247,7 @@ def test_ap_spectrum_management_required(dev, apdev): dev[0].request("DISCONNECT") if hapd: hapd.request("DISABLE") - subprocess.call(['iw', 'reg', 'set', '00']) + hostapd.cmd_execute(apdev[0], ['iw', 'reg', 'set', '00']) dev[0].flush_scan_cache() def test_ap_max_listen_interval(dev, apdev):