forked from espressif/esp-idf
test(newlib): fixed newlib test failing to build for C5
This commit is contained in:
@@ -1,7 +1,3 @@
|
|||||||
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
|
# Documentation: .gitlab/ci/README.md#manifest-file-to-control-the-buildtest-apps
|
||||||
|
|
||||||
components/newlib/test_apps/newlib:
|
components/newlib/test_apps/newlib:
|
||||||
disable:
|
|
||||||
- if: IDF_TARGET == "esp32c5"
|
|
||||||
temporary: true
|
|
||||||
reason: not supported yet # TODO: [ESP32C5] IDF-8675, IDF-10312
|
|
||||||
|
@@ -1,2 +1,2 @@
|
|||||||
| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C6 | ESP32-H2 | ESP32-P4 | ESP32-S2 | ESP32-S3 |
|
| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C5 | ESP32-C6 | ESP32-H2 | ESP32-P4 | ESP32-S2 | ESP32-S3 |
|
||||||
| ----------------- | ----- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
|
| ----------------- | ----- | -------- | -------- | -------- | -------- | -------- | -------- | -------- | -------- |
|
||||||
|
@@ -9,5 +9,5 @@ idf_component_register(SRCS
|
|||||||
"test_setjmp.c"
|
"test_setjmp.c"
|
||||||
"test_stdatomic.c"
|
"test_stdatomic.c"
|
||||||
"test_time.c"
|
"test_time.c"
|
||||||
PRIV_REQUIRES unity vfs cmock driver esp_timer spi_flash test_utils pthread esp_psram
|
PRIV_REQUIRES unity vfs cmock esp_timer spi_flash test_utils pthread esp_psram
|
||||||
WHOLE_ARCHIVE)
|
WHOLE_ARCHIVE)
|
||||||
|
@@ -43,6 +43,8 @@
|
|||||||
#include "esp32h2/rtc.h"
|
#include "esp32h2/rtc.h"
|
||||||
#elif CONFIG_IDF_TARGET_ESP32P4
|
#elif CONFIG_IDF_TARGET_ESP32P4
|
||||||
#include "esp32p4/rtc.h"
|
#include "esp32p4/rtc.h"
|
||||||
|
#elif CONFIG_IDF_TARGET_ESP32C5
|
||||||
|
#include "esp32c5/rtc.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if SOC_CACHE_INTERNAL_MEM_VIA_L1CACHE
|
#if SOC_CACHE_INTERNAL_MEM_VIA_L1CACHE
|
||||||
|
@@ -31,7 +31,6 @@ def validate_sbom(dut: Dut) -> None:
|
|||||||
|
|
||||||
|
|
||||||
@pytest.mark.generic
|
@pytest.mark.generic
|
||||||
@pytest.mark.temp_skip_ci(targets=['esp32c5'], reason='not support yet') # TODO: [ESP32C5] IDF-8675, IDF-10312
|
|
||||||
@pytest.mark.parametrize(
|
@pytest.mark.parametrize(
|
||||||
'config',
|
'config',
|
||||||
[
|
[
|
||||||
|
Reference in New Issue
Block a user