fix(unit_test): Fix esp_wifi and wpa_supplicant unit tests

- Fixed offchan and eloop unit tests
 - Added more targets for wpa_supplicant unit tests
 - Removed ESP_WIFI_TESTING_OPTIONS from esp_wifi Kconfig
This commit is contained in:
Sajia
2025-05-19 10:16:15 +05:30
parent 9cee386af9
commit e68a552cbf
11 changed files with 30 additions and 23 deletions

View File

@@ -24,7 +24,11 @@ def test_wpa_supplicant_ut(dut: Dut) -> None:
],
indirect=True,
)
@idf_parametrize('target', ['esp32'], indirect=['target'])
@idf_parametrize(
'target',
['esp32', 'esp32s2', 'esp32s3', 'esp32c6', 'esp32c61', 'esp32c5'],
indirect=['target'],
)
def test_wpa_supplicant_ut_offchan(case_tester: CaseTester) -> None:
for case in case_tester.test_menu:
if case.attributes.get('test_env') == 'wifi_two_dut':