b32b93a607
1.add os adapter to wifi driver 2.type of encrypt funcs not correct
18 lines
429 B
C
18 lines
429 B
C
/*
|
|
Tests for the Wi-Fi
|
|
*/
|
|
#include "unity.h"
|
|
#include "esp_log.h"
|
|
#include "esp_wifi_internal.h"
|
|
|
|
static const char* TAG = "test_os_adapter_md5";
|
|
|
|
TEST_CASE("wifi os adapter MD5","[wifi]")
|
|
{
|
|
const char *test_wifi_os_funcs_md5 = WIFI_OS_ADAPTER_MD5;
|
|
|
|
ESP_LOGI(TAG, "test wifi os adapter MD5...");
|
|
TEST_ESP_OK(esp_wifi_internal_osi_funcs_md5_check(test_wifi_os_funcs_md5));
|
|
|
|
ESP_LOGI(TAG, "test passed...");
|
|
}
|