mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
6a8aed12ee
Disabled test cases are tracked in: IDF-4465, IDF-5045, IDF-5057, IDF-5058, IDF-5059, IDF-5060, IDF-5061, IDF-5131 - test_fatfs: IDF-5136 - test_pm: IDF-5053 - test_cache_mmu: IDF-5138 - test_partitions: IDF-5137 - test_vfs: IDF-5139 - test_freertos: IDF-5140 - test_wpa_supplicant: IDF-5046 - test_mbedtls: IDF-5141 - test_pthread: IDF-5142 - test_protocomm: IDF-5143 - test_lightsleep: IDF-5053 - test_taskwdt: IDF-5055 - test_tcp_transport: IDF-5144 - test_app_update: IDF-5145 - test_timer: IDF-5052 - test_spi: IDF-5146 - test_rtc_clk: IDF-5060 - test_heap: IDF-5167 ci: fixed issues for tests of libgcc, ets_timer, newlib test_pm: support on C2
67 lines
2.4 KiB
C
67 lines
2.4 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#include <string.h>
|
|
#include "unity.h"
|
|
#include "esp_attr.h"
|
|
#include "test_utils.h"
|
|
|
|
#if !TEMPORARY_DISABLED_FOR_TARGETS(ESP32C2)
|
|
//IDF-5050
|
|
|
|
/* Global variables that should be part of the coredump */
|
|
COREDUMP_IRAM_DATA_ATTR uint32_t var_iram = 0x42;
|
|
COREDUMP_DRAM_ATTR uint32_t var_dram = 0x43;
|
|
COREDUMP_RTC_DATA_ATTR uint32_t var_rtc = 0x44;
|
|
COREDUMP_RTC_FAST_ATTR uint32_t var_rtcfast = 0x45;
|
|
|
|
/* Memory regions to dump, defined at compile time. */
|
|
extern int _coredump_dram_start;
|
|
extern int _coredump_dram_end;
|
|
extern int _coredump_iram_start;
|
|
extern int _coredump_iram_end;
|
|
extern int _coredump_rtc_start;
|
|
extern int _coredump_rtc_end;
|
|
extern int _coredump_rtc_fast_start;
|
|
extern int _coredump_rtc_fast_end;
|
|
|
|
static inline bool is_addr_in_region(void* addr, uint8_t* region, int region_size)
|
|
{
|
|
const void* start = (void*) region;
|
|
const void* end = (void*) (region + region_size);
|
|
return addr >= start && addr < end;
|
|
}
|
|
|
|
TEST_CASE("test variables presence in core dump sections", "[espcoredump]")
|
|
{
|
|
uint32_t section_start = 0;
|
|
uint32_t section_size = 0;
|
|
|
|
/* Check DRAM coredump section */
|
|
section_start = (uint32_t)&_coredump_dram_start;
|
|
section_size = (uint8_t *)&_coredump_dram_end - (uint8_t *)&_coredump_dram_start;
|
|
TEST_ASSERT(section_size > 0);
|
|
TEST_ASSERT(is_addr_in_region(&var_dram, (uint8_t*) section_start, section_size));
|
|
#if IRAM_8BIT_ACCESSIBLE
|
|
/* Check IRAM coredump section */
|
|
section_start = (uint32_t)&_coredump_iram_start;
|
|
section_size = (uint8_t *)&_coredump_iram_end - (uint8_t *)&_coredump_iram_start;
|
|
TEST_ASSERT(section_size > 0);
|
|
TEST_ASSERT(is_addr_in_region(&var_iram, (uint8_t*) section_start, section_size));
|
|
#endif
|
|
/* Check RTC coredump section */
|
|
section_start = (uint32_t)&_coredump_rtc_start;
|
|
section_size = (uint8_t *)&_coredump_rtc_end - (uint8_t *)&_coredump_rtc_start;
|
|
TEST_ASSERT(section_size > 0);
|
|
TEST_ASSERT(is_addr_in_region(&var_rtc, (uint8_t*) section_start, section_size));
|
|
/* Check RTC Fast coredump section */
|
|
section_start = (uint32_t)&_coredump_rtc_fast_start;
|
|
section_size = (uint8_t *)&_coredump_rtc_fast_end - (uint8_t *)&_coredump_rtc_fast_start;
|
|
TEST_ASSERT(section_size > 0);
|
|
TEST_ASSERT(is_addr_in_region(&var_rtcfast, (uint8_t*) section_start, section_size));
|
|
}
|
|
|
|
#endif //!TEMPORARY_DISABLED_FOR_TARGETS(ESP32C2)
|