From 3fa22ffa551cdf27e71c7c0f7165f8323c6d61c4 Mon Sep 17 00:00:00 2001 From: Mahavir Jain Date: Wed, 27 Jan 2021 12:50:06 +0530 Subject: [PATCH] app_update: fix warnings in tests for ESP32-C3 build --- components/app_update/test/test_switch_ota.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/components/app_update/test/test_switch_ota.c b/components/app_update/test/test_switch_ota.c index ec1847135a..98192b9fe3 100644 --- a/components/app_update/test/test_switch_ota.c +++ b/components/app_update/test/test_switch_ota.c @@ -19,7 +19,6 @@ #include "freertos/task.h" #include "freertos/semphr.h" #include "freertos/queue.h" -#include "freertos/xtensa_api.h" #include "unity.h" #include "bootloader_common.h" @@ -450,7 +449,7 @@ static void test_flow4(void) ESP_LOGI(TAG, "boot count %d", boot_count); const esp_partition_t *cur_app = get_running_firmware(); nvs_handle_t handle = 0; - int boot_count_nvs = 0; + int32_t boot_count_nvs = 0; switch (boot_count) { case 2: ESP_LOGI(TAG, "Factory"); @@ -486,7 +485,7 @@ static void test_flow4(void) ESP_LOGI(TAG, "Factory"); TEST_ASSERT_EQUAL(ESP_PARTITION_SUBTYPE_APP_FACTORY, cur_app->subtype); - int boot_count_nvs; + int32_t boot_count_nvs; TEST_ESP_OK(nvs_flash_init()); TEST_ESP_OK(nvs_open(STORAGE_NAMESPACE, NVS_READWRITE, &handle)); TEST_ESP_ERR(ESP_ERR_NVS_NOT_FOUND, nvs_get_i32(handle, "boot_count", &boot_count_nvs));