Skip to content

Commit be9c714

Browse files
committed
Merge branch 'feat/enable_app_update_test_p4_v5.3' into 'release/v5.3'
feat: Enable app_update test app for ESP32P4 (v5.3) See merge request espressif/esp-idf!30821
2 parents d638267 + 24e5e3a commit be9c714

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

components/app_update/test_apps/.build-test-rules.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
components/app_update/test_apps:
44
disable:
5-
- if: IDF_TARGET in ["esp32c6", "esp32h2", "esp32p4", "esp32c5"]
5+
- if: IDF_TARGET in ["esp32c6", "esp32h2", "esp32c5"]
66
temporary: true
7-
reason: target esp32c6, esp32h2, esp32p4, esp32c5 is not supported yet # TODO: IDF-8068, [ESP32C5] IDF-8638
7+
reason: target esp32c6, esp32h2 esp32c5 is not supported yet # TODO: [ESP32C5] IDF-8638
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-S2 | ESP32-S3 |
2-
| ----------------- | ----- | -------- | -------- | -------- | -------- |
1+
| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-P4 | ESP32-S2 | ESP32-S3 |
2+
| ----------------- | ----- | -------- | -------- | -------- | -------- | -------- |

components/app_update/test_apps/pytest_app_update_ut.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def run_multiple_stages(dut: Dut, test_case_num: int, stages: int) -> None:
1919

2020

2121
@pytest.mark.supported_targets
22-
@pytest.mark.temp_skip_ci(targets=['esp32c6', 'esp32h2', 'esp32p4'], reason='c6/h2/p4 support TBD') # TODO: IDF-8959
22+
@pytest.mark.temp_skip_ci(targets=['esp32c6', 'esp32h2'], reason='c6/h2 support TBD')
2323
@pytest.mark.generic
2424
def test_app_update(dut: Dut) -> None:
2525
extra_data = dut.parse_test_menu()

0 commit comments

Comments
 (0)